From 24b8b6e4c7d76a673a4b4141a1285668a3b25e7f Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:33:44 +0800 Subject: [PATCH] [skip ci] Add the comments to service (#13507) 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 fbe97793b3..83c601e99c 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -373,6 +373,7 @@ func (s *Server) LoadPartitions(ctx context.Context, request *milvuspb.LoadParti return s.proxy.LoadPartitions(ctx, request) } +// ReleasePartitions notifies Proxy to release the partitions data func (s *Server) ReleasePartitions(ctx context.Context, request *milvuspb.ReleasePartitionsRequest) (*commonpb.Status, error) { return s.proxy.ReleasePartitions(ctx, request) }