You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by GitBox <gi...@apache.org> on 2021/12/02 21:54:05 UTC

[GitHub] [kafka] cmccabe commented on a change in pull request #11416: KAFKA-13490: Improve createTopics and incrementalAlterConfigs in KRaft

cmccabe commented on a change in pull request #11416:
URL: https://github.com/apache/kafka/pull/11416#discussion_r761494119



##########
File path: metadata/src/test/java/org/apache/kafka/controller/ConfigurationControlManagerTest.java
##########
@@ -72,6 +73,14 @@
             define("ghi", ConfigDef.Type.BOOLEAN, true, ConfigDef.Importance.HIGH, "ghi"));
     }
 
+    static class ExampleConfigurationValidator implements ConfigurationValidator {
+        static final ExampleConfigurationValidator INSTANCE = new ExampleConfigurationValidator();
+
+        @Override
+        public void validate(ConfigResource resource, Map<String, String> config) {
+        }

Review comment:
       ok, I'll do that




-- 
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-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org