From ea24a10dca4b9aaf712a8722da3d9a797bd31f16 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Sat, 16 Oct 2021 17:12:46 +0800 Subject: [PATCH] [skip ci]Fix golint error for ReleaseCollection in QueryNode (#10005) Signed-off-by: cai.zhang --- internal/distributed/querynode/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/querynode/service.go b/internal/distributed/querynode/service.go index 5c5e8ff8c3..1326815fe7 100644 --- a/internal/distributed/querynode/service.go +++ b/internal/distributed/querynode/service.go @@ -307,6 +307,7 @@ func (s *Server) LoadSegments(ctx context.Context, req *querypb.LoadSegmentsRequ return s.querynode.LoadSegments(ctx, req) } +// ReleaseCollection releases the data of the specified collection in QueryNode. func (s *Server) ReleaseCollection(ctx context.Context, req *querypb.ReleaseCollectionRequest) (*commonpb.Status, error) { // ignore ctx return s.querynode.ReleaseCollection(ctx, req)