From a4c11731ed1ea64b111c6fac0c63192b7347dab4 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Wed, 27 Oct 2021 17:59:26 +0800 Subject: [PATCH] [skip ci] Fix golint for Stop in QueryCoord (#10748) Signed-off-by: cai.zhang --- internal/distributed/querycoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/querycoord/service.go b/internal/distributed/querycoord/service.go index 9cc4288e1b..735752a147 100644 --- a/internal/distributed/querycoord/service.go +++ b/internal/distributed/querycoord/service.go @@ -223,6 +223,7 @@ func (s *Server) start() error { return s.queryCoord.Start() } +// Stop stops QueryCoord's grpc service. func (s *Server) Stop() error { if s.closer != nil { if err := s.closer.Close(); err != nil {