From 9c5a2f42de45d398c6048f2ae3b25a87bc6f86df Mon Sep 17 00:00:00 2001 From: Clebert Suconic Date: Thu, 1 Aug 2019 16:13:50 -0400 Subject: [PATCH] ARTEMIS-2435 Renaming CLI parameter as --journal prefix --- .../java/org/apache/activemq/artemis/cli/commands/Create.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java index 99d4b130d8..6318d0b40d 100644 --- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java +++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java @@ -266,7 +266,7 @@ public class Create extends InputAbstract { @Option(name = "--no-fsync", description = "Disable usage of fdatasync (channel.force(false) from java nio) on the journal") private boolean noJournalSync; - @Option(name = "--device-block-size", description = "The block size by the device, default at 4096.") + @Option(name = "--journal-device-block-size", description = "The block size by the device, default at 4096.") private int journalDeviceBlockSize = 4096; @Option(name = "--global-max-size", description = "Maximum amount of memory which message data may consume (Default: Undefined, half of the system's memory)")