[skip ci]Fix golint error for DropPartition in rootcoord (#11849)

Signed-off-by: Cai.Zhang <cai.zhang@zilliz.com>
pull/11864/head
cai.zhang 2021-11-16 09:16:08 +08:00 committed by GitHub
parent 42ffb26e64
commit a7be2e1943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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)
}