You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2015/02/20 16:15:18 UTC

activemq git commit: Should just be turning off the connector not just the bean server.

Repository: activemq
Updated Branches:
  refs/heads/master 2949e8dbf -> 4c272e308


Should just be turning off the connector not just the bean server.

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

Branch: refs/heads/master
Commit: 4c272e308130db6152ea29c46a16e5fb6e01e6ae
Parents: 2949e8d
Author: Timothy Bish <ta...@gmail.com>
Authored: Fri Feb 20 10:15:02 2015 -0500
Committer: Timothy Bish <ta...@gmail.com>
Committed: Fri Feb 20 10:15:02 2015 -0500

----------------------------------------------------------------------
 .../java/org/apache/activemq/transport/amqp/AmqpTestSupport.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/4c272e30/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTestSupport.java
----------------------------------------------------------------------
diff --git a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTestSupport.java b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTestSupport.java
index 203a00c..7c6b052 100644
--- a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTestSupport.java
+++ b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/AmqpTestSupport.java
@@ -106,7 +106,7 @@ public class AmqpTestSupport {
         brokerService.setAdvisorySupport(false);
         brokerService.setDeleteAllMessagesOnStartup(deleteAllMessages);
         brokerService.setUseJmx(true);
-        brokerService.getManagementContext().setCreateMBeanServer(false);
+        brokerService.getManagementContext().setCreateConnector(false);
 
         SSLContext ctx = SSLContext.getInstance("TLS");
         ctx.init(new KeyManager[0], new TrustManager[]{new DefaultTrustManager()}, new SecureRandom());