Repository: activemq-artemis Updated Branches: refs/heads/master 8458f8576 -> acbab49bc
Fix ReconnectWithSameClientIDTest Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/e3a1e8ab Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/e3a1e8ab Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/e3a1e8ab Branch: refs/heads/master Commit: e3a1e8abd637e2907b7cb4a8aa52de401eaaa05c Parents: a2aa18c Author: Howard Gao <[email protected]> Authored: Mon Sep 7 15:05:33 2015 +0800 Committer: Howard Gao <[email protected]> Committed: Mon Sep 7 15:05:33 2015 +0800 ---------------------------------------------------------------------- .../artemis/core/protocol/openwire/amq/AMQConnectionContext.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/e3a1e8ab/artemis-protocols/artemis-openwire-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/openwire/amq/AMQConnectionContext.java ---------------------------------------------------------------------- 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 c5c2a9e..a79911c 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 class AMQConnectionContext { // 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; } }
