dongjinleekr commented on a change in pull request #10827: URL: https://github.com/apache/kafka/pull/10827#discussion_r652375109
########## File path: core/src/main/scala/kafka/tools/ReplicaVerificationTool.scala ########## @@ -116,7 +121,13 @@ object ReplicaVerificationTool extends Logging { if (options.has(versionOpt)) { CommandLineUtils.printVersionAndDie() } - CommandLineUtils.checkRequiredArgs(parser, options, brokerListOpt) + + val effectiveBrokerListOpt = if (options.has(bootstrapServerOpt)) + bootstrapServerOpt + else + brokerListOpt Review comment: Fixed. See `ReplicaVerificationToolOptions#effectiveBrokerListOpt`. -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org