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/15 15:58:26 UTC

svn commit: r899651 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs

Author: tabish
Date: Fri Jan 15 14:58:26 2010
New Revision: 899651

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

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

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs?rev=899651&r1=899650&r2=899651&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Transport/Tcp/TcpTransportFactory.cs Fri Jan 15 14:58:26 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; }