Skip to content

Commit

Permalink
ARTEMIS-4020 Upgrade command
Browse files Browse the repository at this point in the history
This command will help updating the instance from a previous home
  • Loading branch information
clebertsuconic committed Oct 28, 2022
1 parent d62a9c4 commit 225b6df
Show file tree
Hide file tree
Showing 26 changed files with 1,888 additions and 345 deletions.
Expand Up @@ -32,6 +32,7 @@
import org.apache.activemq.artemis.cli.commands.Kill;
import org.apache.activemq.artemis.cli.commands.Mask;
import org.apache.activemq.artemis.cli.commands.PrintVersion;
import org.apache.activemq.artemis.cli.commands.Upgrade;
import org.apache.activemq.artemis.cli.commands.activation.ActivationSequenceSet;
import org.apache.activemq.artemis.cli.commands.check.HelpCheck;
import org.apache.activemq.artemis.cli.commands.check.NodeCheck;
Expand Down Expand Up @@ -230,7 +231,7 @@ private static Cli.CliBuilder<Action> builder(File artemisInstance) {
} else {
builder.withGroup("data").withDescription("data tools group (print|recover) (example ./artemis data print)").
withDefaultCommand(HelpData.class).withCommands(RecoverMessages.class, PrintData.class);
builder = builder.withCommand(Create.class);
builder = builder.withCommands(Create.class, Upgrade.class);
}

return builder;
Expand Down

Large diffs are not rendered by default.

0 comments on commit 225b6df

Please sign in to comment.