1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

src/server.go: whoops, even the backward support for old format is wrong.

https://xkcd.com/1739
This commit is contained in:
Henrik Hautakoski 2022-08-15 12:10:20 +02:00
parent 1a3594af54
commit 7215e34152
No known key found for this signature in database
GPG key ID: 608414D93E862CCD

View file

@ -59,7 +59,7 @@ func onTcpMessage(c *tcp_server.Client, args string) {
return
}
// Old format: <url> <version> <api> <block_time>
// Old format: <url> <num_blocks> <api_version> <host>
if utils.IsUrl(split[0]) {
logger.Warn("Deprecated format. Please change to the new format: <api>|<url>[|<num_blocks>|<host>]")
@ -67,19 +67,19 @@ func onTcpMessage(c *tcp_server.Client, args string) {
// 1. url (scheme + ip/domain + port)
a.url = split[0]
// 2. api
// 2. num blocks
if len(split) > 1 {
a.api = split[1]
}
// 3. num blocks
if len(split) > 2 {
num, err := strconv.ParseInt(split[2], 10, 32)
num, err := strconv.ParseInt(split[1], 10, 32)
if err == nil {
a.num_blocks = int(num)
}
}
// 3. api_version
if len(split) > 2 {
a.api = split[2]
}
// 4. Host
if len(split) > 3 {
a.host = split[3]