wernerdv commented on code in PR #15558: URL: https://github.com/apache/kafka/pull/15558#discussion_r1534499279
########## connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorSourceConnector.java: ########## @@ -630,8 +631,16 @@ Map<String, Config> describeTopicConfigs(Set<String> topics) Set<ConfigResource> resources = topics.stream() .map(x -> new ConfigResource(ConfigResource.Type.TOPIC, x)) .collect(Collectors.toSet()); - return sourceAdminClient.describeConfigs(resources).all().get().entrySet().stream() - .collect(Collectors.toMap(x -> x.getKey().name(), Entry::getValue)); + try { Review Comment: I added the method to MirrorUtils#adminCall. Is this what is required or needs improvement? -- 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