From e3e45ef0690784148f2d1ef36aca9d6be4f8a629 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Wed, 22 Dec 2021 19:37:19 +0800 Subject: [PATCH] [skip e2e]Add comments to proxy service (#13996) 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 a142a19f8e..557ebe1182 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -479,6 +479,7 @@ func (s *Server) AlterAlias(ctx context.Context, request *milvuspb.AlterAliasReq return s.proxy.AlterAlias(ctx, request) } +// GetCompactionState gets the state of a compaction func (s *Server) GetCompactionState(ctx context.Context, req *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error) { return s.proxy.GetCompactionState(ctx, req) }