mirror of https://github.com/status-im/consul.git
Move FIXME comment to the right call site
This commit is contained in:
parent
3dfd9e02b7
commit
e237904d80
|
@ -155,8 +155,6 @@ func (sc *serverConfig) cycleServer() (servers []*server_details.ServerDetails)
|
||||||
newServers = append(newServers, sc.servers[1:]...)
|
newServers = append(newServers, sc.servers[1:]...)
|
||||||
newServers = append(newServers, sc.servers[0])
|
newServers = append(newServers, sc.servers[0])
|
||||||
|
|
||||||
// FIXME(sean@): Is it worth it to fire off a go routine and
|
|
||||||
// PingConsulServer?
|
|
||||||
return newServers
|
return newServers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -258,6 +256,8 @@ func (sm *ServerManager) NotifyFailedServer(server *server_details.ServerDetails
|
||||||
|
|
||||||
if len(sc.servers) > 1 && sc.servers[0] == server {
|
if len(sc.servers) > 1 && sc.servers[0] == server {
|
||||||
sc.servers = sc.cycleServer()
|
sc.servers = sc.cycleServer()
|
||||||
|
// FIXME(sean@): Is it worth it to fire off a go routine and
|
||||||
|
// PingConsulServer?
|
||||||
sm.saveServerConfig(sc)
|
sm.saveServerConfig(sc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue