heritamas commented on a change in pull request #8730: URL: https://github.com/apache/kafka/pull/8730#discussion_r460197007
########## File path: connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointTask.java ########## @@ -132,7 +132,7 @@ public String version() { return listConsumerGroupOffsets(group).entrySet().stream() .filter(x -> shouldCheckpointTopic(x.getKey().topic())) .map(x -> checkpoint(group, x.getKey(), x.getValue())) - .filter(x -> x.downstreamOffset() > 0) // ignore offsets we cannot translate accurately + .filter(x -> x.downstreamOffset() >= 0) // ignore offsets we cannot translate accurately Review comment: Yes, does not hurt to leave it. Just for sure. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org