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 2012/08/24 01:42:37 UTC

svn commit: r1376784 - /activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs

Author: jgomes
Date: Thu Aug 23 23:42:36 2012
New Revision: 1376784

URL: http://svn.apache.org/viewvc?rev=1376784&view=rev
Log:
Call Stop() on the transport layer before disposing of it to ensure that the ResponseCorrelator (and other transports) are properly cleaned up.
Fixes https://issues.apache.org/jira/browse/AMQNET-395

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs?rev=1376784&r1=1376783&r2=1376784&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/src/main/csharp/Connection.cs Thu Aug 23 23:42:36 2012
@@ -443,6 +443,7 @@ namespace Apache.NMS.Stomp
                     }
 
                     Tracer.Info("Disposing of the Transport.");
+					transport.Stop();
                     transport.Dispose();
                 }
                 catch(Exception ex)