Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To add 2 options to StreamsReset tool.

Code Block
consumerPropertyOption commandConfigOption = optionParser.accepts("consumercommand-propertyconfig", "AProperty mechanismfile tocontaining passconfigs user-definedto propertiesbe inpassed theto formAdmin key=valueClient toand theEmbedded consumerConsumer")
        .withRequiredArg()
        .ofTypewithRequiredArg(String.class)
        .describedAs("consumer property");
 
consumerConfigOption = optionParser.accepts("consumer.config", "Consumer configuration properties file, Note that " + consumerPropertyOption.toString() + " takes precedence over this config")
        .withRequiredArg(ofType(String.class)
        .ofType(String.class)
        .describedAs("Consumercommand config property file");
  


Proposed Changes

To add 2 options to streams reset tool.

...