From 73773a84babafe299a9a47bfca2a7b076c0abb1e Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Tue, 21 Dec 2021 19:05:19 +0800 Subject: [PATCH] [skip e2e] Refine datacoord services comment (#13882) Signed-off-by: Edward Zeng --- internal/datacoord/services.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index c62d71ddb6..e1bfb34a29 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -250,7 +250,7 @@ func (s *Server) GetCollectionStatistics(ctx context.Context, req *datapb.GetCol return resp, nil } -// GetPartitionStatistics return statistics for parition +// GetPartitionStatistics returns statistics for parition // for now only row count is returned func (s *Server) GetPartitionStatistics(ctx context.Context, req *datapb.GetPartitionStatisticsRequest) (*datapb.GetPartitionStatisticsResponse, error) { resp := &datapb.GetPartitionStatisticsResponse{ @@ -303,7 +303,7 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoR return resp, nil } -// SaveBinlogPaths update segment related binlog path +// SaveBinlogPaths updates segment related binlog path // works for Checkpoints and Flush func (s *Server) SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) (*commonpb.Status, error) { resp := &commonpb.Status{ErrorCode: commonpb.ErrorCode_UnexpectedError}