AndrewJSchofield opened a new pull request, #22600: URL: https://github.com/apache/kafka/pull/22600
This PR fixes a tiny problem in the error message for missing command options in `kafka-streams-groups.sh`. Before: ``` % bin/kafka-streams-groups.sh --bootstrap-server localhost:9092 --reset-offsets --group CG1 --dry-run One of the reset scopes should be defined: --all-topics, --topic. ``` In this tool, `--all-topics` and `--topic` are not valid options. They should be `--all-input-topics` and `--input-topic`. After: ``` % bin/kafka-streams-groups.sh --bootstrap-server localhost:9092 --reset-offsets --group CG1 --dry-run One of the reset scopes should be defined: --all-input-topics, --input-topic. ``` -- 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]
