From 2aa1d5d7142bf6f6a2f3a6f36195ab7200748b2e Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Wed, 15 Dec 2021 17:01:49 +0800 Subject: [PATCH] [skip ci] Add the comments to service (#13400) 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 b6510e9e0b..fbe97793b3 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -340,6 +340,7 @@ func (s *Server) ReleaseCollection(ctx context.Context, request *milvuspb.Releas return s.proxy.ReleaseCollection(ctx, request) } +// DescribeCollection notifies Proxy to describe a collection func (s *Server) DescribeCollection(ctx context.Context, request *milvuspb.DescribeCollectionRequest) (*milvuspb.DescribeCollectionResponse, error) { return s.proxy.DescribeCollection(ctx, request) }