kevin-wu24 commented on code in PR #17582:
URL: https://github.com/apache/kafka/pull/17582#discussion_r1824999429


##########
test-common/src/main/java/org/apache/kafka/common/test/TestKitNodes.java:
##########
@@ -57,8 +57,15 @@ public static class Builder {
         private int numBrokerNodes;
         private int numDisksPerBroker = 1;
         private Map<Integer, Map<String, String>> perServerProperties = 
Collections.emptyMap();
-        private BootstrapMetadata bootstrapMetadata = BootstrapMetadata.
-            fromVersion(MetadataVersion.latestTesting(), "testkit");
+        private BootstrapMetadata bootstrapMetadata;
+
+        public Builder() {
+            
this(BootstrapMetadata.fromVersion(MetadataVersion.latestTesting(), "testkit"));
+        }
+
+        public Builder(BootstrapMetadata bootstrapMetadata) {

Review Comment:
   I see a usage for `Builder(BootstrapMetadata bootstrapMetadata)` in 
`KRaftClusterTest`.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to