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 2009/12/21 21:52:23 UTC

svn commit: r892973 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs

Author: tabish
Date: Mon Dec 21 20:52:22 2009
New Revision: 892973

URL: http://svn.apache.org/viewvc?rev=892973&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQNET-212

Disable the Inactivity Monitor by default due to stability issues.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs?rev=892973&r1=892972&r2=892973&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs Mon Dec 21 20:52:22 2009
@@ -43,7 +43,7 @@
         /// <summary>
         /// Should the Inactivity Monitor be enabled on this Transport.
         /// </summary>
-        private bool useInactivityMonitor = true;
+        private bool useInactivityMonitor = false;
         public bool UseInactivityMonitor
         {
            get { return this.useInactivityMonitor; }