From 3ea83d77cc65dda0c849c671cb7ca87b68cc8457 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Wed, 15 Dec 2021 12:00:20 +0800 Subject: [PATCH] [skip ci] Add the comments to service (#13411) 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 81c31c72ee..66d96de5a7 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -366,6 +366,7 @@ func (s *Server) HasPartition(ctx context.Context, request *milvuspb.HasPartitio return s.proxy.HasPartition(ctx, request) } +// LoadPartitions notifies Proxy to load the partitions data func (s *Server) LoadPartitions(ctx context.Context, request *milvuspb.LoadPartitionsRequest) (*commonpb.Status, error) { return s.proxy.LoadPartitions(ctx, request) }