diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/HelpAddress.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/HelpAddress.java index 0dcd20fc8e..0ed89793cd 100644 --- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/HelpAddress.java +++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/address/HelpAddress.java @@ -56,7 +56,7 @@ public class HelpAddress extends Help implements Action { @Override public Object execute(ActionContext context) throws Exception { List commands = new ArrayList<>(1); - commands.add("queue"); + commands.add("address"); help(global, commands); return null; }