etcdmain/grpc_proxy: Remove superflous logging line.

This commit is contained in:
Piotr Tabor 2020-09-07 13:05:12 +02:00
parent 093282f5ea
commit 9d5a840942
2 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,6 @@ func newClientCfg(lg *zap.Logger, eps []string) (*clientv3.Config, error) {
cfg.MaxCallRecvMsgSize = grpcMaxCallRecvMsgSize
}
lg.Info("grpcProxyCA for connections to etcd-server")
tls := newTLS(grpcProxyCA, grpcProxyCert, grpcProxyKey, true)
if tls == nil && grpcProxyInsecureSkipTLSVerify {
tls = &transport.TLSInfo{}

View File

@ -204,6 +204,7 @@ func (v2p *proxyV2Proc) Start() error {
if err := v2p.start(); err != nil {
return err
}
// The full line we are expecting in the logs:
// "caller":"httpproxy/director.go:65","msg":"endpoints found","endpoints":["http://localhost:20000"]}
return v2p.waitReady("endpoints found")
}