[skip ci]Fix golint error for LoadCollection in QueryCoord (#10953)

Signed-off-by: Cai.Zhang <cai.zhang@zilliz.com>
This commit is contained in:
cai.zhang 2021-10-30 18:51:20 +08:00 committed by GitHub
parent 166170f6fe
commit b4e4a33b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -270,6 +270,7 @@ func (s *Server) ShowCollections(ctx context.Context, req *querypb.ShowCollectio
return s.queryCoord.ShowCollections(ctx, req)
}
// LoadCollection loads the data of the specified collection in QueryCoord.
func (s *Server) LoadCollection(ctx context.Context, req *querypb.LoadCollectionRequest) (*commonpb.Status, error) {
return s.queryCoord.LoadCollection(ctx, req)
}