mirror of https://github.com/milvus-io/milvus.git
[skip ci]Fix golint error for ReleasePartitions in QueryCoord (#11060)
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>pull/11158/head
parent
dc7dd9b17a
commit
c3d0795e81
|
@ -295,6 +295,7 @@ func (s *Server) LoadPartitions(ctx context.Context, req *querypb.LoadPartitions
|
||||||
return s.queryCoord.LoadPartitions(ctx, req)
|
return s.queryCoord.LoadPartitions(ctx, req)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ReleasePartitions releases the data of the specified partition in QueryCoord.
|
||||||
func (s *Server) ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error) {
|
func (s *Server) ReleasePartitions(ctx context.Context, req *querypb.ReleasePartitionsRequest) (*commonpb.Status, error) {
|
||||||
return s.queryCoord.ReleasePartitions(ctx, req)
|
return s.queryCoord.ReleasePartitions(ctx, req)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue