ARTEMIS-3375 fix for helptext for 'artemis address'

This commit is contained in:
Erwin Dondorp 2021-07-04 17:29:56 +02:00 committed by Justin Bertram
parent 4d7c6cc188
commit c6874c9acc
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}