From a7be2e194361d04ba512d86c7596295e7f52eb95 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Tue, 16 Nov 2021 09:16:08 +0800 Subject: [PATCH] [skip ci]Fix golint error for DropPartition in rootcoord (#11849) Signed-off-by: Cai.Zhang --- internal/distributed/rootcoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/rootcoord/service.go b/internal/distributed/rootcoord/service.go index 342685d44e..923b9e27e0 100644 --- a/internal/distributed/rootcoord/service.go +++ b/internal/distributed/rootcoord/service.go @@ -330,6 +330,7 @@ func (s *Server) CreatePartition(ctx context.Context, in *milvuspb.CreatePartiti return s.rootCoord.CreatePartition(ctx, in) } +// DropPartition drops the specified partition. func (s *Server) DropPartition(ctx context.Context, in *milvuspb.DropPartitionRequest) (*commonpb.Status, error) { return s.rootCoord.DropPartition(ctx, in) }