diff --git a/etcdmain/grpc_proxy.go b/etcdmain/grpc_proxy.go index e79dce776..3da3a6879 100644 --- a/etcdmain/grpc_proxy.go +++ b/etcdmain/grpc_proxy.go @@ -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{} diff --git a/tests/e2e/cluster_proxy_test.go b/tests/e2e/cluster_proxy_test.go index 5fa30ca7c..eb305b12b 100644 --- a/tests/e2e/cluster_proxy_test.go +++ b/tests/e2e/cluster_proxy_test.go @@ -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") }