You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/08/11 03:14:27 UTC

[1/2] activemq-artemis git commit: changing mandatory message on CLI

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 2ab52da9a -> 6b1736f35


changing mandatory message on CLI


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/7ba1bcbf
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/7ba1bcbf
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/7ba1bcbf

Branch: refs/heads/master
Commit: 7ba1bcbf1ea7c017e9d92bde0e8e2329ceb0cd19
Parents: 2ab52da
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed Aug 10 23:09:22 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Aug 10 23:09:22 2016 -0400

----------------------------------------------------------------------
 .../org/apache/activemq/artemis/cli/commands/InputAbstract.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7ba1bcbf/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
index c6adf5d..a499d4e 100644
--- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
@@ -45,7 +45,7 @@ public class InputAbstract extends ActionAbstract {
       boolean valid = false;
       System.out.println();
       do {
-         context.out.println(propertyName + ": is mandatory with this configuration:");
+         context.out.println(propertyName + ": mandatory:");
          context.out.println(prompt);
          inputStr = scanner.nextLine();
          if (inputStr.trim().equals("")) {


[2/2] activemq-artemis git commit: Increase spawnTimeout to 300 seconds. After some tests I have made

Posted by cl...@apache.org.
Increase spawnTimeout to 300 seconds. After some tests I have made


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/6b1736f3
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/6b1736f3
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/6b1736f3

Branch: refs/heads/master
Commit: 6b1736f356fc121624eda5d8dc2922e13fd9adc2
Parents: 7ba1bcb
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed Aug 10 23:12:00 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Aug 10 23:12:00 2016 -0400

----------------------------------------------------------------------
 .../java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/6b1736f3/artemis-maven-plugin/src/main/java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java
----------------------------------------------------------------------
diff --git a/artemis-maven-plugin/src/main/java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java b/artemis-maven-plugin/src/main/java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java
index 414d39c..6a204ea 100644
--- a/artemis-maven-plugin/src/main/java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java
+++ b/artemis-maven-plugin/src/main/java/org/apache/activemq/artemis/maven/ArtemisCLIPlugin.java
@@ -58,7 +58,7 @@ public class ArtemisCLIPlugin extends ArtemisAbstractPlugin {
    @Parameter
    private boolean spawn = false;
 
-   @Parameter(defaultValue = "60000")
+   @Parameter(defaultValue = "300000")
    private long spawnTimeout;
 
    @Parameter