capistrant commented on code in PR #17762:
URL: https://github.com/apache/druid/pull/17762#discussion_r2325756048
##########
server/src/main/java/org/apache/druid/server/compaction/CompactionStatus.java:
##########
@@ -209,7 +209,8 @@ static CompactionStatus compute(
)
{
final Evaluator evaluator = new Evaluator(candidateSegments, config,
objectMapper);
- return CHECKS.stream().map(f -> f.apply(evaluator))
+ return CHECKS.stream()
+ .map(f -> f.apply(evaluator))
.filter(status -> !status.isComplete())
.findFirst().orElse(COMPLETE);
Review Comment:
oh no, the bots are nitpicking now? 😆 we are doomed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]