You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2009/06/25 02:54:24 UTC

svn commit: r788230 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs

Author: jgomes
Date: Thu Jun 25 00:54:24 2009
New Revision: 788230

URL: http://svn.apache.org/viewvc?rev=788230&view=rev
Log:
Change default connection to use failover protocol.
Fixes [AMQNET-165]. (See https://issues.apache.org/activemq/browse/AMQNET-165)

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs?rev=788230&r1=788229&r2=788230&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.1.0/src/main/csharp/ConnectionFactory.cs Thu Jun 25 00:54:24 2009
@@ -27,7 +27,7 @@
 	/// </summary>
 	public class ConnectionFactory : IConnectionFactory
 	{
-		public const string DEFAULT_BROKER_URL = "tcp://localhost:61616";
+		public const string DEFAULT_BROKER_URL = "failover:tcp://localhost:61616";
 		public const string ENV_BROKER_URL = "ACTIVEMQ_BROKER_URL";
 
 		private static event ExceptionListener onException;