Skip to content

Commit

Permalink
typo in mock url
Browse files Browse the repository at this point in the history
Signed-off-by: Kirill Danshin <kirill@danshin.pro>
  • Loading branch information
kirillDanshin committed Jun 5, 2019
1 parent 8eda2ca commit e1adefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connmgrd/main.go
Expand Up @@ -38,7 +38,7 @@ func main() {
}
h1 := connmgr.NewHost(connmgr.HostTypeHTTP, "http://localhost:9111", "http://localhost:9111")
h1.SetTimeout(100 * time.Millisecond)
h2 := connmgr.NewHost(connmgr.HostTypeHTTP, "http://localhost:9111", "http://localhost:9112")
h2 := connmgr.NewHost(connmgr.HostTypeHTTP, "http://localhost:9112", "http://localhost:9112")
h2.SetTimeout(100 * time.Millisecond)
s.httpPool.Add(h1)
s.httpPool.Add(h2)
Expand Down

0 comments on commit e1adefc

Please sign in to comment.