mimaison commented on code in PR #15558: URL: https://github.com/apache/kafka/pull/15558#discussion_r1544383751
########## connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointConnector.java: ########## @@ -216,7 +217,10 @@ Set<String> findConsumerGroups() Collection<ConsumerGroupListing> listConsumerGroups() throws InterruptedException, ExecutionException { - return sourceAdminClient.listConsumerGroups().valid().get(); + return adminCall( + () -> sourceAdminClient.listConsumerGroups().valid().get(), + () -> "list consumer groups on cluster " + config.sourceClusterAlias() Review Comment: I don't see the change, did you forget to push? -- 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