From fd33750aeca0435015dd7d3385b41d02b00f2eff Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:39:52 +0800 Subject: [PATCH] [skip ci] Add the comments to service (#13509) 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 a56acd44d1..8fbc6f0188 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -383,6 +383,7 @@ func (s *Server) GetPartitionStatistics(ctx context.Context, request *milvuspb.G return s.proxy.GetPartitionStatistics(ctx, request) } +// ShowPartitions notifies Proxy to show the partitions func (s *Server) ShowPartitions(ctx context.Context, request *milvuspb.ShowPartitionsRequest) (*milvuspb.ShowPartitionsResponse, error) { return s.proxy.ShowPartitions(ctx, request) }