ahuang98 commented on code in PR #16774:
URL: https://github.com/apache/kafka/pull/16774#discussion_r1701155689
##########
tools/src/main/java/org/apache/kafka/tools/MetadataQuorumCommand.java:
##########
@@ -158,6 +170,49 @@ private static void addDescribeSubParser(ArgumentParser
parser) {
.action(Arguments.storeTrue());
}
+ private static void addAddControllerSubParser(ArgumentParser parser) {
+ Subparsers subparsers = parser.addSubparsers().dest("command");
+ Subparser addControllerParser = subparsers
+ .addParser("add-controller")
+ .help("Add a controller to the KRaft controller cluster");
+
+ addControllerParser
+ .addArgument("--controller-config")
+ .help("The configuration of the controller that we are removing.")
Review Comment:
`that we are adding`
--
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]