From b4e4a33b07db0bdac275281bc2c1763567e68a77 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Sat, 30 Oct 2021 18:51:20 +0800 Subject: [PATCH] [skip ci]Fix golint error for LoadCollection in QueryCoord (#10953) 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 d67e9dc15a..dd45b20f61 100644 --- a/internal/distributed/querycoord/service.go +++ b/internal/distributed/querycoord/service.go @@ -270,6 +270,7 @@ func (s *Server) ShowCollections(ctx context.Context, req *querypb.ShowCollectio return s.queryCoord.ShowCollections(ctx, req) } +// LoadCollection loads the data of the specified collection in QueryCoord. func (s *Server) LoadCollection(ctx context.Context, req *querypb.LoadCollectionRequest) (*commonpb.Status, error) { return s.queryCoord.LoadCollection(ctx, req) }