From 98fa078c392a3c68f1e022cd47ebb4c26686d166 Mon Sep 17 00:00:00 2001 From: sunby Date: Wed, 29 Sep 2021 23:42:00 +0800 Subject: [PATCH] [skip ci]Add comment for GetSegmentInfoChannel (#8897) Signed-off-by: sunby --- internal/distributed/datacoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/datacoord/service.go b/internal/distributed/datacoord/service.go index 2b79a5e230..3b4553e587 100644 --- a/internal/distributed/datacoord/service.go +++ b/internal/distributed/datacoord/service.go @@ -226,6 +226,7 @@ func (s *Server) GetPartitionStatistics(ctx context.Context, req *datapb.GetPart return s.dataCoord.GetPartitionStatistics(ctx, req) } +// GetSegmentInfoChannel gets channel to which datacoord sends segment information func (s *Server) GetSegmentInfoChannel(ctx context.Context, req *datapb.GetSegmentInfoChannelRequest) (*milvuspb.StringResponse, error) { return s.dataCoord.GetSegmentInfoChannel(ctx) }