Versions Compared

Key

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

...

The StreamsResetter doesn't let the user pass in any configurations to the embedded consumer. This is a problem in secure environments because you can't configure the embedded consumer and Admin Client to talk to the cluster. The streams reset tool should allow an approach to pass consumer configurations.

Public Interfaces

To add 2 options to an option to StreamsReset tool.

Code Block
 commandConfigOption = optionParser.accepts("command-config", "Property file containing configs to be passed to Admin Client and Embedded Consumer")
              .withRequiredArg()
              .ofType(String.class)
              .describedAs("command config property file"); 

...