From 33963955dc69caebd0807cfa91280aed0d15e893 Mon Sep 17 00:00:00 2001 From: shaoyue Date: Wed, 22 Dec 2021 19:29:50 +0800 Subject: [PATCH] [skip e2e] Add comment for distributed/proxy.Server (#13991) Signed-off-by: shaoyue.chen --- 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 0f703642c0..be4e2af3a8 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -360,6 +360,7 @@ func (s *Server) DropPartition(ctx context.Context, request *milvuspb.DropPartit return s.proxy.DropPartition(ctx, request) } +// HasPartition notifies Proxy to check a partition's existence func (s *Server) HasPartition(ctx context.Context, request *milvuspb.HasPartitionRequest) (*milvuspb.BoolResponse, error) { return s.proxy.HasPartition(ctx, request) }