kirktrue commented on code in PR #17700: URL: https://github.com/apache/kafka/pull/17700#discussion_r1917404131
########## clients/src/test/java/org/apache/kafka/clients/consumer/internals/FetcherTest.java: ########## @@ -3757,28 +3764,6 @@ private FetchResponse fetchResponse(TopicIdPartition tp, MemoryRecords records, return FetchResponse.of(Errors.NONE, throttleTime, INVALID_SESSION_ID, new LinkedHashMap<>(partitions)); } - private FetchResponse fetchResponse2(TopicIdPartition tp1, MemoryRecords records1, long hw1, - TopicIdPartition tp2, MemoryRecords records2, long hw2) { - Map<TopicIdPartition, FetchResponseData.PartitionData> partitions = new HashMap<>(); - partitions.put(tp1, - new FetchResponseData.PartitionData() - .setPartitionIndex(tp1.topicPartition().partition()) - .setErrorCode(Errors.NONE.code()) - .setHighWatermark(hw1) - .setLastStableOffset(FetchResponse.INVALID_LAST_STABLE_OFFSET) - .setLogStartOffset(0) - .setRecords(records1)); - partitions.put(tp2, - new FetchResponseData.PartitionData() - .setPartitionIndex(tp2.topicPartition().partition()) - .setErrorCode(Errors.NONE.code()) - .setHighWatermark(hw2) - .setLastStableOffset(FetchResponse.INVALID_LAST_STABLE_OFFSET) - .setLogStartOffset(0) - .setRecords(records2)); - return FetchResponse.of(Errors.NONE, 0, INVALID_SESSION_ID, new LinkedHashMap<>(partitions)); - } - /** * Assert that the {@link Fetcher#collectFetch() latest fetch} does not contain any * {@link Fetch#records() user-visible records}, did not Review Comment: Will do. -- 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