fvaleri commented on code in PR #13131: URL: https://github.com/apache/kafka/pull/13131#discussion_r1083318714
########## core/src/main/scala/kafka/admin/ConfigCommand.scala: ########## @@ -771,8 +772,8 @@ object ConfigCommand extends Logging { .withRequiredArg .describedAs("command config property file") .ofType(classOf[String]) - val alterOpt = parser.accepts("alter", "Alter the configuration for the entity.") - val describeOpt = parser.accepts("describe", "List configs for the given entity.") + val alterOpt: OptionSpec[String] = parser.accepts("alter", "Alter the configuration for the entity.").withOptionalArg() + val describeOpt: OptionSpec[String] = parser.accepts("describe", "List configs for the given entity.").withOptionalArg() Review Comment: Correct, it is a left over from a previous attempt. Reverting. -- 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