diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2011-09-06 15:18:19 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2011-09-06 15:18:19 +0000 |
| commit | 8d88b124875f12f5e342fc6325ae168555c29adf (patch) | |
| tree | bf4918aa002508aa17781374886251f194e93135 /java/client | |
| parent | f2559b07b47b6d95a36e3e7c7cec6023f0ea518a (diff) | |
| download | qpid-python-8d88b124875f12f5e342fc6325ae168555c29adf.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/qpid@1165702 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
| -rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java b/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java index 2793411f74..1c2c46cf51 100644 --- a/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java +++ b/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) { |
