You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2021/07/04 18:32:30 UTC

[activemq-artemis] branch main updated: ARTEMIS-3375 fix for helptext for 'artemis address'

This is an automated email from the ASF dual-hosted git repository.

jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new c6874c9  ARTEMIS-3375 fix for helptext for 'artemis address'
     new a2a13b6  This closes #3643
c6874c9 is described below

commit c6874c9acc3c0b56ab772c89f2087f97e0948dba
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Sun Jul 4 17:29:56 2021 +0200

    ARTEMIS-3375 fix for helptext for 'artemis address'
---
 .../org/apache/activemq/artemis/cli/commands/address/HelpAddress.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 0dcd20f..0ed8979 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<String> commands = new ArrayList<>(1);
-      commands.add("queue");
+      commands.add("address");
       help(global, commands);
       return null;
    }