Add comment for GetRecoveryInfo (#8526)

Signed-off-by: sunby <bingyi.sun@zilliz.com>
pull/8530/head
sunby 2021-09-24 23:18:11 +08:00 committed by GitHub
parent 0b1feaa71c
commit 5e6e0feeff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -229,11 +229,12 @@ func (s *Server) GetSegmentInfoChannel(ctx context.Context, req *datapb.GetSegme
return s.dataCoord.GetSegmentInfoChannel(ctx)
}
//SaveBinlogPaths implement DataCoordServer, saves segment, collection binlog according to datanode request
// SaveBinlogPaths implement DataCoordServer, saves segment, collection binlog according to datanode request
func (s *Server) SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) (*commonpb.Status, error) {
return s.dataCoord.SaveBinlogPaths(ctx, req)
}
// GetRecoveryInfo gets information for recovering channels
func (s *Server) GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInfoRequest) (*datapb.GetRecoveryInfoResponse, error) {
return s.dataCoord.GetRecoveryInfo(ctx, req)
}