You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`
for _, server := range config.httpServerAddresses {
u.Host = fmt.Sprintf("%s:%d", server.host, config.httpServerPort)
logger.Info("Getting router config from %s", u.String())
resp, err := client.Get(u.String())
if err != nil {
logger.Warning("Error occurred while getting router config from url %s", u.String())
continue
}
c.parse(resp.Body)
return
}
`
for _, server := range config.httpServerAddresses {
u.Host = fmt.Sprintf("%s:%d", server.host, config.httpServerPort)
logger.Info("Getting router config from %s", u.String())
`
u.Host = fmt.Sprintf("%s:%d", server.host, config.httpServerPort) 这个怎么是使用了默认端口,不是应该使用 server.port吗
The text was updated successfully, but these errors were encountered: