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/12/14 14:24:39 UTC

[2/7] activemq-artemis git commit: Fix bug in createQueue invocation chain

Fix bug in createQueue invocation chain


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

Branch: refs/heads/master
Commit: 2290ab40c3d0b131d3a9d1b63e058d9860574c4b
Parents: 3150759
Author: jbertram <jb...@apache.org>
Authored: Tue Dec 13 17:58:10 2016 -0600
Committer: jbertram <jb...@apache.org>
Committed: Tue Dec 13 17:58:10 2016 -0600

----------------------------------------------------------------------
 .../artemis/core/management/impl/ActiveMQServerControlImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/2290ab40/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java
----------------------------------------------------------------------
diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java
index ef8b9a8..382b3e3 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/ActiveMQServerControlImpl.java
@@ -646,7 +646,7 @@ public class ActiveMQServerControlImpl extends AbstractControl implements Active
 
    @Override
    public void createQueue(final String address, final String name, final String routingType) throws Exception {
-      createQueue(address, name, routingType, true);
+      createQueue(address, name, true, routingType);
    }
 
    @Override