Author: rajith
Date: Tue Sep 6 15:18:19 2011
New Revision: 1165702
URL: http://svn.apache.org/viewvc?rev=1165702&view=rev
Log:
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.
Modified:
qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
Modified:
qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
URL:
http://svn.apache.org/viewvc/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java?rev=1165702&r1=1165701&r2=1165702&view=diff
==============================================================================
---
qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
(original)
+++
qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/message/AMQMessageDelegate_0_10.java
Tue Sep 6 15:18:19 2011
@@ -291,7 +291,7 @@ public class AMQMessageDelegate_0_10 ext
try
{
- return AMQDestination.createDestination("ADDR:" + addr.toString()
+ ";{create: always}");
+ return AMQDestination.createDestination("ADDR:" + addr.toString());
}
catch(Exception e)
{
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]