chia7712 commented on code in PR #16644:
URL: https://github.com/apache/kafka/pull/16644#discussion_r1721032433
##########
core/src/test/java/kafka/test/server/BootstrapControllersIntegrationTest.java:
##########
@@ -235,4 +246,55 @@ private void testIncrementalAlterConfigs(ClusterInstance
clusterInstance, boolea
});
}
}
+
+ @ClusterTest
+ public void testAlterReassignmentsWithBootstrapControllers(ClusterInstance
clusterInstance) throws ExecutionException, InterruptedException {
+ String topicName = "foo";
+ try (Admin admin = Admin.create(adminConfig(clusterInstance, false))) {
+ Map<Integer, List<Integer>> assignments = new HashMap<>();
+ assignments.put(0, Arrays.asList(0, 1, 2));
Review Comment:
this manual assignments requires "3" brokers, but the test starts with only
one broker, right?
--
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]