Mmuzaf commented on code in PR #4263: URL: https://github.com/apache/cassandra/pull/4263#discussion_r2219738124
########## src/java/org/apache/cassandra/tools/nodetool/GuardrailsConfigCommand.java: ########## @@ -59,51 +61,101 @@ public static class GetGuardrailsConfig extends GuardrailsConfigCommand allowedValues = { "values", "thresholds", "flags", "others" }) private String guardrailCategory; - @Arguments(description = "Specific names or guardrails to get configuration of.") + @Option(name = { "--verbose", "-v" }) + private boolean verbose = false; + + @Arguments(description = "Specific name of a guardrail to get configuration of.") Review Comment: we can narrow it down to a single string argument: ```suggestion @Arguments(description = "Specific name of a guardrail to get configuration of.") private String guardrailName; ``` -- 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: pr-unsubscr...@cassandra.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@cassandra.apache.org For additional commands, e-mail: pr-h...@cassandra.apache.org