From 96a03522724e732f81aa8a151cf6a57823ff7d99 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Tue, 14 Dec 2021 16:19:33 +0800 Subject: [PATCH] [skip ci] Add notes to service (#13315) 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 fa33d14a03..03ce3da5a6 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -349,6 +349,7 @@ func (s *Server) ShowCollections(ctx context.Context, request *milvuspb.ShowColl return s.proxy.ShowCollections(ctx, request) } +// CreatePartition notifies Proxy to create a partition func (s *Server) CreatePartition(ctx context.Context, request *milvuspb.CreatePartitionRequest) (*commonpb.Status, error) { return s.proxy.CreatePartition(ctx, request) }