mimaison commented on code in PR #13838: URL: https://github.com/apache/kafka/pull/13838#discussion_r1226492269
########## connect/mirror/src/test/java/org/apache/kafka/connect/mirror/integration/MirrorConnectorsIntegrationBaseTest.java: ########## @@ -1187,13 +1191,25 @@ private void createTopics() { * Generate some consumer activity on both clusters to ensure the checkpoint connector always starts promptly */ protected void warmUpConsumer(Map<String, Object> consumerProps) { - try (Consumer<byte[], byte[]> dummyConsumer = primary.kafka().createConsumerAndSubscribeTo(consumerProps, "test-topic-1")) { - dummyConsumer.poll(CONSUMER_POLL_TIMEOUT_MS); - dummyConsumer.commitSync(); - } - try (Consumer<byte[], byte[]> dummyConsumer = backup.kafka().createConsumerAndSubscribeTo(consumerProps, "test-topic-1")) { - dummyConsumer.poll(CONSUMER_POLL_TIMEOUT_MS); - dummyConsumer.commitSync(); + warmUpConsumer(primary.kafka(), consumerProps, "test-topic-1"); Review Comment: Considering this does not use a consumer client anymore, is `warmUpConsumer()` still the best name for these methods? -- 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