OmniaGM commented on code in PR #15999: URL: https://github.com/apache/kafka/pull/15999#discussion_r1664376985
########## connect/mirror/src/main/java/org/apache/kafka/connect/mirror/MirrorCheckpointConnector.java: ########## @@ -106,6 +108,17 @@ public void stop() { Utils.closeQuietly(targetAdminClient, "target admin client"); } + @Override + public Config validate(Map<String, String> connectorConfigs) { + List<ConfigValue> configValues = super.validate(connectorConfigs).configValues(); + MirrorCheckpointConfig.validate(connectorConfigs).forEach((config, errorMsg) -> + configValues.stream() + .filter(conf -> conf.name().equals(config)) Review Comment: Sorry for the confusion I just lost track of @mimaison point from before! this why I reverted config back to `MirrorConnectorConfig` -- 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