FrankYang0529 commented on code in PR #15745: URL: https://github.com/apache/kafka/pull/15745#discussion_r1582798251
########## core/src/test/java/kafka/test/ClusterConfig.java: ########## @@ -55,14 +56,15 @@ public class ClusterConfig { private final Map<Integer, Map<String, String>> perBrokerOverrideProperties; @SuppressWarnings("checkstyle:ParameterNumber") - private ClusterConfig(Type type, int brokers, int controllers, String name, boolean autoStart, + private ClusterConfig(Type type, int brokers, int controllers, int disksPerBroker, String name, boolean autoStart, SecurityProtocol securityProtocol, String listenerName, File trustStoreFile, MetadataVersion metadataVersion, Map<String, String> serverProperties, Map<String, String> producerProperties, Map<String, String> consumerProperties, Map<String, String> adminClientProperties, Map<String, String> saslServerProperties, Map<String, String> saslClientProperties, Map<Integer, Map<String, String>> perBrokerOverrideProperties) { this.type = Objects.requireNonNull(type); this.brokers = brokers; this.controllers = controllers; + this.disksPerBroker = disksPerBroker; Review Comment: I add check in `ClusterConfig#Builder#build` function. -- 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