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 22:45:28 UTC

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

Author: tabish
Date: Wed Jan  6 21:45:19 2010
New Revision: 896686

URL: http://svn.apache.org/viewvc?rev=896686&view=rev
Log:
Set the default state of useInactivityMonitor to true

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=896686&r1=896685&r2=896686&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 Wed Jan  6 21:45:19 2010
@@ -43,7 +43,7 @@
         /// <summary>
         /// Should the Inactivity Monitor be enabled on this Transport.
         /// </summary>
-        private bool useInactivityMonitor = false;
+        private bool useInactivityMonitor = true;
         public bool UseInactivityMonitor
         {
            get { return this.useInactivityMonitor; }