Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
AmatyaAvadhanula committed Dec 12, 2023
1 parent e47f559 commit 80f79fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class NewestSegmentFirstIterator implements CompactionSegmentIterator
if (Intervals.ETERNITY.getStart().equals(segment.getInterval().getStart())
|| Intervals.ETERNITY.getEnd().equals(segment.getInterval().getEnd())) {
// This is to prevent the coordinator from crashing as raised in https://github.com/apache/druid/issues/13208
log.warn("Cannot compact datasource[%s] containing segments with partial-ETERNITY segments", dataSource);
log.warn("Cannot compact datasource[%s] containing segments with partial-ETERNITY intervals", dataSource);
return;
}
for (Interval interval : configuredSegmentGranularity.getIterable(segment.getInterval())) {
Expand Down

0 comments on commit 80f79fb

Please sign in to comment.