From 9d5a8409420b53e3ae553b5a3bbf02eb9068e672 Mon Sep 17 00:00:00 2001 From: Piotr Tabor Date: Mon, 7 Sep 2020 13:05:12 +0200 Subject: [PATCH] etcdmain/grpc_proxy: Remove superflous logging line. --- etcdmain/grpc_proxy.go | 1 - tests/e2e/cluster_proxy_test.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) 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") }