From 62446f63d457314f6e949de690da4cdd46faecb8 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Mon, 18 Oct 2021 20:17:03 +0800 Subject: [PATCH] [skip ci]Fix golint error for GetSegmentInfo in QueryNode (#10065) 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 0f89378b62..ab5f628952 100644 --- a/internal/distributed/querynode/service.go +++ b/internal/distributed/querynode/service.go @@ -325,6 +325,7 @@ func (s *Server) ReleaseSegments(ctx context.Context, req *querypb.ReleaseSegmen return s.querynode.ReleaseSegments(ctx, req) } +// GetSegmentInfo gets the information of the specified segments in QueryNode. func (s *Server) GetSegmentInfo(ctx context.Context, req *querypb.GetSegmentInfoRequest) (*querypb.GetSegmentInfoResponse, error) { return s.querynode.GetSegmentInfo(ctx, req) }