From 7eca7aec133c851ff20e9ba51ec2dea4fdc66f1b Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Thu, 4 Nov 2021 20:47:28 +0800 Subject: [PATCH] [skip ci]Fix golint error for Stop in QueryCoord (#11241) Signed-off-by: cai.zhang --- internal/distributed/querycoord/client/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/querycoord/client/client.go b/internal/distributed/querycoord/client/client.go index b472a557f3..70f5291ab1 100644 --- a/internal/distributed/querycoord/client/client.go +++ b/internal/distributed/querycoord/client/client.go @@ -210,6 +210,7 @@ func (c *Client) Start() error { return nil } +// Stop stops QueryCoord's grpc client server. func (c *Client) Stop() error { c.cancel() c.grpcClientMtx.Lock()