From d4c998e6f573a41b3df4311b8e85ec40e35140d2 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:37:27 +0800 Subject: [PATCH] [skip ci] Add the comments to service (#13508) 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 83c601e99c..a56acd44d1 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -378,6 +378,7 @@ func (s *Server) ReleasePartitions(ctx context.Context, request *milvuspb.Releas return s.proxy.ReleasePartitions(ctx, request) } +// GetPartitionStatistics notifies Proxy to get the partitions Statistics info. func (s *Server) GetPartitionStatistics(ctx context.Context, request *milvuspb.GetPartitionStatisticsRequest) (*milvuspb.GetPartitionStatisticsResponse, error) { return s.proxy.GetPartitionStatistics(ctx, request) }