[skip ci]Fix golint error for CreateQueryChannel in QueryCoord (#11061)

Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
This commit is contained in:
cai.zhang 2021-11-02 20:57:53 +08:00 committed by GitHub
parent 18360dc032
commit 60d1f60651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}