Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2747#discussion_r201216094
--- Diff: storm-core/src/jvm/org/apache/storm/command/AdminCommands.java ---
@@ -109,6 +133,7 @@ public void printCliHelp(String command, PrintStream
out) {
static {
COMMANDS.put("remove_corrupt_topologies", new
RemoveCorruptTopologies());
COMMANDS.put("zk_cli", new ZkCli());
+ COMMANDS.put("creds", new CredentialsDebug());
--- End diff --
+1 If we don't have any documentation for admin commands, it should be
useful to have one, otherwise end users wouldn't even know its existence.
---