From 21189779eeea7686bcec1b87c086cab49672c2c7 Mon Sep 17 00:00:00 2001 From: jingkl <34296482+jingkl@users.noreply.github.com> Date: Fri, 17 Dec 2021 14:27:30 +0800 Subject: [PATCH] [skip e2e]Add comments to proxy service (#13564) 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 2d84582840..d25b45617a 100644 --- a/internal/distributed/proxy/service.go +++ b/internal/distributed/proxy/service.go @@ -388,6 +388,7 @@ func (s *Server) ShowPartitions(ctx context.Context, request *milvuspb.ShowParti return s.proxy.ShowPartitions(ctx, request) } +// CreateIndex notifies Proxy to create index func (s *Server) CreateIndex(ctx context.Context, request *milvuspb.CreateIndexRequest) (*commonpb.Status, error) { return s.proxy.CreateIndex(ctx, request) }