summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2011-09-06 15:18:19 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2011-09-06 15:18:19 +0000
commit7d0e38b12556b16f4a40eabdc46ce6555f809457 (patch)
treedc245fb5b61d81ec19ba4ee7e8912ff4bb14ee71
parent273007769a00b50404b3baf8fbfc21d046cc281d (diff)
downloadqpid-python-7d0e38b12556b16f4a40eabdc46ce6555f809457.tar.gz
QPID-3466 Removed the 'create:always' option when constructing the
address string from the replyTo construct. The application which sets the replyTo is responsible for creating/deleting the replyTo destination and not the one who sends messages to it. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1165702 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java b/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
index 2793411f74..1c2c46cf51 100644
--- a/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
+++ b/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
@@ -291,7 +291,7 @@ public class AMQMessageDelegate_0_10 extends AbstractAMQMessageDelegate
try
{
- return AMQDestination.createDestination("ADDR:" + addr.toString() + ";{create: always}");
+ return AMQDestination.createDestination("ADDR:" + addr.toString());
}
catch(Exception e)
{