You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ma...@apache.org on 2018/11/01 15:49:37 UTC

activemq-artemis git commit: ARTEMIS-2139 Fix ReplyTo for TempQueue

Repository: activemq-artemis
Updated Branches:
  refs/heads/2.6.x 13f1ca36f -> 8e8b02a4c


ARTEMIS-2139 Fix ReplyTo for TempQueue


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

Branch: refs/heads/2.6.x
Commit: 8e8b02a4ca51d13d5c3010802cf49b6687043c42
Parents: 13f1ca3
Author: Martyn Taylor <mt...@redhat.com>
Authored: Thu Nov 1 15:39:36 2018 +0000
Committer: Martyn Taylor <mt...@redhat.com>
Committed: Thu Nov 1 15:48:53 2018 +0000

----------------------------------------------------------------------
 .../apache/activemq/artemis/jms/client/ActiveMQDestination.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/8e8b02a4/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java
----------------------------------------------------------------------
diff --git a/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java b/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java
index 1868812..0228e70 100644
--- a/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java
+++ b/artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java
@@ -128,7 +128,7 @@ public class ActiveMQDestination extends JNDIStorable implements Destination, Se
       } else if (unprefixedName.startsWith(PacketImpl.OLD_TOPIC_PREFIX.toString())) {
          unprefixedName = unprefixedName.substring(PacketImpl.OLD_TOPIC_PREFIX.length());
       } else if (unprefixedName.startsWith(PacketImpl.OLD_TEMP_QUEUE_PREFIX.toString())) {
-         unprefixedName = unprefixedName.substring(PacketImpl.OLD_QUEUE_PREFIX.length());
+         unprefixedName = unprefixedName.substring(PacketImpl.OLD_TEMP_QUEUE_PREFIX.length());
       } else if (unprefixedName.startsWith(PacketImpl.OLD_TEMP_TOPIC_PREFIX.toString())) {
          unprefixedName = unprefixedName.substring(PacketImpl.OLD_TEMP_TOPIC_PREFIX.length());
       }