mirror of https://github.com/milvus-io/milvus.git
Remove the log for GetFlushableSegments in the datacoord (#27503)
Signed-off-by: SimFG <bang.fu@zilliz.com>pull/27517/head
parent
5ba158a3f5
commit
a3188231b3
|
@ -504,11 +504,7 @@ func (s *SegmentManager) GetFlushableSegments(ctx context.Context, channel strin
|
|||
ret := make([]UniqueID, 0, len(s.segments))
|
||||
for _, id := range s.segments {
|
||||
info := s.meta.GetHealthySegment(id)
|
||||
if info == nil {
|
||||
continue
|
||||
}
|
||||
if info.InsertChannel != channel {
|
||||
log.Warn("the channel of flushable segments isn't equal", zap.String("insert_channel", info.InsertChannel), zap.String("channel", channel), zap.Int64("segment", id))
|
||||
if info == nil || info.InsertChannel != channel {
|
||||
continue
|
||||
}
|
||||
if s.flushPolicy(info, t) {
|
||||
|
|
Loading…
Reference in New Issue