Merge pull request #7943 from heyitsanthony/tcpproxy-init-msg

tcpproxy: display endpoints, not pointers, in ready to proxy string
This commit is contained in:
Anthony Romano 2017-05-17 12:20:46 -07:00 committed by GitHub
commit f4641accc3

View File

@ -82,7 +82,12 @@ func (tp *TCPProxy) Run() error {
tp.remotes = append(tp.remotes, &remote{srv: srv, addr: addr})
}
plog.Printf("ready to proxy client requests to %+v", tp.Endpoints)
eps := []string{}
for _, ep := range tp.Endpoints {
eps = append(eps, fmt.Sprintf("%s:%d", ep.Target, ep.Port))
}
plog.Printf("ready to proxy client requests to %+v", eps)
go tp.runMonitor()
for {
in, err := tp.Listener.Accept()