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>
This commit is contained in:
congqixia 2024-09-09 17:19:05 +08:00 committed by GitHub
parent 51870aef08
commit aaa8487590
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -339,7 +339,6 @@ func (s *Server) startExternalGrpc(grpcPort int, errChan chan error) {
if Params.TLSMode.GetAsInt() == 1 {
creds, err := credentials.NewServerTLSFromFile(Params.ServerPemPath.GetValue(), Params.ServerKeyPath.GetValue())
if err != nil {
log.Warn("proxy can't create creds", zap.Error(err))
log.Warn("proxy can't create creds", zap.Error(err))
errChan <- err
return