From df546bc2414302a3eafbb910f703b8396cc33856 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Thu, 23 Dec 2021 18:15:21 +0800 Subject: [PATCH] [skip e2e]Add comments to proxy service (#14081) Signed-off-by: jingkl --- internal/distributed/proxy/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/proxy/service.go b/internal/distributed/proxy/service.go index 26f67b9066..8c029c88e0 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -439,6 +439,7 @@ func (s *Server) GetDdChannel(ctx context.Context, request *internalpb.GetDdChan return s.proxy.GetDdChannel(ctx, request) } +//GetPersistentSegmentInfo notifies Proxy to get persistent segment info. func (s *Server) GetPersistentSegmentInfo(ctx context.Context, request *milvuspb.GetPersistentSegmentInfoRequest) (*milvuspb.GetPersistentSegmentInfoResponse, error) { return s.proxy.GetPersistentSegmentInfo(ctx, request) }