dlmarion commented on code in PR #5599:
URL: https://github.com/apache/accumulo/pull/5599#discussion_r2132457346
##########
core/src/main/java/org/apache/accumulo/core/cli/Help.java:
##########
@@ -41,10 +41,18 @@ public void parseArgs(String programName, String[] args,
Object... others) {
}
if (help) {
commander.usage();
+ String extra = getAdditionalHelpInformation(programName);
+ if (extra != null) {
+ commander.getConsole().println(extra);
+ }
Review Comment:
Yes, that's true. Also plugins that use the `general.custom` prefix will be
missed.
--
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]