Skip to content

Commit

Permalink
ARTEMIS-2139 Fix ReplyTo for TempQueue
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaylor committed Nov 1, 2018
1 parent 13f1ca3 commit 8e8b02a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -128,7 +128,7 @@ public static Destination fromPrefixedName(final String addr, final String name)
} 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());
}
Expand Down

0 comments on commit 8e8b02a

Please sign in to comment.