Move FIXME comment to the right call site

This commit is contained in:
Sean Chittenden 2016-03-28 13:49:55 -07:00
parent b38d3d71c8
commit 34a29a2107
1 changed files with 2 additions and 2 deletions

View File

@ -155,8 +155,6 @@ func (sc *serverConfig) cycleServer() (servers []*server_details.ServerDetails)
newServers = append(newServers, sc.servers[1:]...)
newServers = append(newServers, sc.servers[0])
// FIXME(sean@): Is it worth it to fire off a go routine and
// PingConsulServer?
return newServers
}
@ -258,6 +256,8 @@ func (sm *ServerManager) NotifyFailedServer(server *server_details.ServerDetails
if len(sc.servers) > 1 && sc.servers[0] == server {
sc.servers = sc.cycleServer()
// FIXME(sean@): Is it worth it to fire off a go routine and
// PingConsulServer?
sm.saveServerConfig(sc)
}
}