philipnee commented on code in PR #14670: URL: https://github.com/apache/kafka/pull/14670#discussion_r1377954063
########## tools/src/main/java/org/apache/kafka/tools/ClientCompatibilityTest.java: ########## @@ -430,8 +430,9 @@ public void testConsume(final long prodTimeMs) throws Throwable { () -> log.info("offsetsForTime = {}", offsetsForTime.result)); // Whether or not offsetsForTimes works, beginningOffsets and endOffsets // should work. - consumer.beginningOffsets(timestampsToSearch.keySet()); - consumer.endOffsets(timestampsToSearch.keySet()); + Map<TopicPartition, Long> beginningOffsets = consumer.beginningOffsets(timestampsToSearch.keySet()); + Map<TopicPartition, Long> endingOffsets = consumer.endOffsets(timestampsToSearch.keySet()); + log.trace("beginningOffsets: {}, endingOffsets: {}", beginningOffsets, endingOffsets); Review Comment: I find spotBugs flaky. Sometimes it would complain about a bunch of stuff I never touched... -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org