From 166170f6fe5f4e9aa38817623d5ae7648d7a3759 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Sat, 30 Oct 2021 18:49:01 +0800 Subject: [PATCH] [skip ci]Fix golint error for ShowCollections in QueryCoord (#10952) 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 c86ff6afbd..d67e9dc15a 100644 --- a/internal/distributed/querycoord/service.go +++ b/internal/distributed/querycoord/service.go @@ -265,6 +265,7 @@ func (s *Server) GetStatisticsChannel(ctx context.Context, req *internalpb.GetSt return s.queryCoord.GetStatisticsChannel(ctx) } +// ShowCollections shows the collections in the QueryCoord. func (s *Server) ShowCollections(ctx context.Context, req *querypb.ShowCollectionsRequest) (*querypb.ShowCollectionsResponse, error) { return s.queryCoord.ShowCollections(ctx, req) }