You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2013/02/06 22:35:20 UTC

svn commit: r1443227 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp

Author: tabish
Date: Wed Feb  6 21:35:20 2013
New Revision: 1443227

URL: http://svn.apache.org/viewvc?rev=1443227&view=rev
Log:
fix for: https://issues.apache.org/jira/browse/AMQCPP-456

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp?rev=1443227&r1=1443226&r2=1443227&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/transport/failover/FailoverTransportFactory.cpp Wed Feb  6 21:35:20 2013
@@ -102,6 +102,8 @@ Pointer<Transport> FailoverTransportFact
             Boolean::parseBoolean(topLvlProperties.getProperty("trackMessages", "false")));
         transport->setMaxCacheSize(
             Integer::parseInt(topLvlProperties.getProperty("maxCacheSize", "131072")));
+        transport->setUpdateURIsSupported(
+            Boolean::parseBoolean(topLvlProperties.getProperty("updateURIsSupported", "true")));
 
         transport->addURI(false, data.getComponents());