From 60d1f60651d0ddba44db8b3c9bfb210fd0f2da21 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Tue, 2 Nov 2021 20:57:53 +0800 Subject: [PATCH] [skip ci]Fix golint error for CreateQueryChannel in QueryCoord (#11061) 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 36634c327f..2eb95491e4 100644 --- a/internal/distributed/querycoord/service.go +++ b/internal/distributed/querycoord/service.go @@ -299,6 +299,7 @@ func (s *Server) ReleasePartitions(ctx context.Context, req *querypb.ReleasePart return s.queryCoord.ReleasePartitions(ctx, req) } +// CreateQueryChannel creates the channels for querying in QueryCoord. func (s *Server) CreateQueryChannel(ctx context.Context, req *querypb.CreateQueryChannelRequest) (*querypb.CreateQueryChannelResponse, error) { return s.queryCoord.CreateQueryChannel(ctx, req) }