From 4d2575e8dc07d29ea78f5a246ff5cca26733cf53 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Tue, 9 Nov 2021 20:07:58 +0800 Subject: [PATCH] [skip ci]Fix golint error for CreateQueryChannel in QueryCoord (#11516) 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 2bfa243a49..5cdb5e4543 100644 --- a/internal/distributed/querycoord/client/client.go +++ b/internal/distributed/querycoord/client/client.go @@ -370,6 +370,7 @@ func (c *Client) ReleasePartitions(ctx context.Context, req *querypb.ReleasePart return ret.(*commonpb.Status), err } +// CreateQueryChannel creates the channels for querying in QueryCoord. func (c *Client) CreateQueryChannel(ctx context.Context, req *querypb.CreateQueryChannelRequest) (*querypb.CreateQueryChannelResponse, error) { ret, err := c.recall(func() (interface{}, error) { client, err := c.getGrpcClient()