[skip ci]Fix golint for DropIndex in rootcoord (#11926)

Signed-off-by: Cai.Zhang <cai.zhang@zilliz.com>
This commit is contained in:
cai.zhang 2021-11-16 21:32:15 +08:00 committed by GitHub
parent 5c6f9c9691
commit 247049a65e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,6 +350,7 @@ func (s *Server) CreateIndex(ctx context.Context, in *milvuspb.CreateIndexReques
return s.rootCoord.CreateIndex(ctx, in)
}
// DropIndex drops the index.
func (s *Server) DropIndex(ctx context.Context, in *milvuspb.DropIndexRequest) (*commonpb.Status, error) {
return s.rootCoord.DropIndex(ctx, in)
}