From 263e22fe66dc6c6090b6eff938476fa8f8605190 Mon Sep 17 00:00:00 2001 From: jaime Date: Wed, 8 Dec 2021 14:59:56 +0800 Subject: [PATCH] [skip ci] Add graceful stop grpc server log in indexcoord (#12922) Signed-off-by: yun.zhang Co-authored-by: yun.zhang --- internal/distributed/indexcoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/indexcoord/service.go b/internal/distributed/indexcoord/service.go index 1edeae3a78..290e46aaf9 100644 --- a/internal/distributed/indexcoord/service.go +++ b/internal/distributed/indexcoord/service.go @@ -126,6 +126,7 @@ func (s *Server) Stop() error { s.loopCancel() if s.grpcServer != nil { + log.Debug("Graceful stop grpc server...") s.grpcServer.GracefulStop() }