From b97e88e8593efc56940a1931ea170f09971add30 Mon Sep 17 00:00:00 2001 From: jaime Date: Tue, 7 Dec 2021 09:51:56 +0800 Subject: [PATCH] [skip ci] Add graceful stop grpc server log in proxy (#12827) Signed-off-by: yun.zhang Co-authored-by: yun.zhang --- internal/distributed/proxy/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/proxy/service.go b/internal/distributed/proxy/service.go index 3a19ecb6bf..f9596c0fff 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -278,6 +278,7 @@ func (s *Server) Stop() error { } if s.grpcServer != nil { + log.Debug("Graceful stop grpc server...") s.grpcServer.GracefulStop() }