From e3a1e8abd637e2907b7cb4a8aa52de401eaaa05c Mon Sep 17 00:00:00 2001 From: Howard Gao Date: Mon, 7 Sep 2015 15:05:33 +0800 Subject: [PATCH] Fix ReconnectWithSameClientIDTest --- .../core/protocol/openwire/amq/AMQConnectionContext.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQConnectionContext.java b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQConnectionContext.java index c5c2a9eee11..a79911cde72 100644 --- a/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQConnectionContext.java +++ b/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQConnectionContext.java @@ -244,7 +244,8 @@ public boolean isAllowLinkStealing() { // TODO: check what this means, // on the activemq implementation this used to check on // the connector, so this looks like a configuration option - return true; + // http://activemq.apache.org/configuring-transports.html + return false; } }