[skip ci] Add comments to service (#13314)

Signed-off-by: jingkl <jingjing.jia@zilliz.com>
pull/13336/head
jingkl 2021-12-14 11:59:10 +08:00 committed by GitHub
parent c32148fa20
commit 1950beba24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -332,16 +332,15 @@ func (s *Server) LoadCollection(ctx context.Context, request *milvuspb.LoadColle
return s.proxy.LoadCollection(ctx, request)
}
// ReleaseCollection notifies Proxy to release a collection's data
func (s *Server) ReleaseCollection(ctx context.Context, request *milvuspb.ReleaseCollectionRequest) (*commonpb.Status, error) {
return s.proxy.ReleaseCollection(ctx, request)
}
// ReleaseCollection notifies Proxy to release a collection's data
func (s *Server) DescribeCollection(ctx context.Context, request *milvuspb.DescribeCollectionRequest) (*milvuspb.DescribeCollectionResponse, error) {
return s.proxy.DescribeCollection(ctx, request)
}
// ReleaseCollection notifies Proxy to release a collection's data
func (s *Server) GetCollectionStatistics(ctx context.Context, request *milvuspb.GetCollectionStatisticsRequest) (*milvuspb.GetCollectionStatisticsResponse, error) {
return s.proxy.GetCollectionStatistics(ctx, request)
}