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 2010/01/06 23:46:55 UTC

svn commit: r896703 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs

Author: tabish
Date: Wed Jan  6 22:46:54 2010
New Revision: 896703

URL: http://svn.apache.org/viewvc?rev=896703&view=rev
Log:
Fix to actually set properties on the Connection's RedeliveryPolicy from the URI.

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs?rev=896703&r1=896702&r2=896703&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/ConnectionFactory.cs Wed Jan  6 22:46:54 2010
@@ -112,6 +112,9 @@
             // Apply any URI options to the Prefetch policy in the Connection.
             URISupport.SetProperties(connection.PrefetchPolicy, c.Parameters, "nms.PrefetchPolicy.");
 
+            // Apply any URI options to the Redelivery policy in the Connection.
+            URISupport.SetProperties(connection.RedeliveryPolicy, c.Parameters, "nms.RedeliveryPolicy.");
+
             connection.ITransport.Start();
             return connection;
         }