This is an automated email from the ASF dual-hosted git repository.

jbertram pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new e6343b6  ARTEMIS-2806 deployQueue missing address argument
     new 1f391a8  This closes #3185
e6343b6 is described below

commit e6343b604efa49c0024c9bffe1362c8624e04c18
Author: qihongxu <[email protected]>
AuthorDate: Tue Jun 16 14:57:10 2020 +0800

    ARTEMIS-2806 deployQueue missing address argument
---
 .../artemis/core/management/impl/ActiveMQServerControlImpl.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 62be7a6..0cd94fd 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
@@ -952,7 +952,7 @@ public class ActiveMQServerControlImpl extends 
AbstractControl implements Active
       clearIO();
       try {
          server.createQueue(new QueueConfiguration(name)
-                            .setName(name)
+                            .setAddress(address)
                             .setFilterString(filterStr)
                             .setDurable(durable));
       } finally {

Reply via email to