mirror of https://github.com/milvus-io/milvus.git
enhance: Remove duplicated log in proxy service (#36110)
Remove duplicate identical log in proxy/service.go Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>pull/36106/head
parent
51870aef08
commit
aaa8487590
|
@ -339,7 +339,6 @@ func (s *Server) startExternalGrpc(grpcPort int, errChan chan error) {
|
||||||
if Params.TLSMode.GetAsInt() == 1 {
|
if Params.TLSMode.GetAsInt() == 1 {
|
||||||
creds, err := credentials.NewServerTLSFromFile(Params.ServerPemPath.GetValue(), Params.ServerKeyPath.GetValue())
|
creds, err := credentials.NewServerTLSFromFile(Params.ServerPemPath.GetValue(), Params.ServerKeyPath.GetValue())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warn("proxy can't create creds", zap.Error(err))
|
|
||||||
log.Warn("proxy can't create creds", zap.Error(err))
|
log.Warn("proxy can't create creds", zap.Error(err))
|
||||||
errChan <- err
|
errChan <- err
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue