Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4DAE1DA9F for ; Thu, 23 Aug 2012 23:45:31 +0000 (UTC) Received: (qmail 34169 invoked by uid 500); 23 Aug 2012 23:45:31 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 34130 invoked by uid 500); 23 Aug 2012 23:45:31 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 34122 invoked by uid 99); 23 Aug 2012 23:45:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2012 23:45:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2012 23:45:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1E0792388962 for ; Thu, 23 Aug 2012 23:44:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1376786 - in /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk: ./ src/main/csharp/Connection.cs Date: Thu, 23 Aug 2012 23:44:45 -0000 To: commits@activemq.apache.org From: jgomes@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120823234445.1E0792388962@eris.apache.org> Author: jgomes Date: Thu Aug 23 23:44:44 2012 New Revision: 1376786 URL: http://svn.apache.org/viewvc?rev=1376786&view=rev Log: Merged revision(s) 1376784 from activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x: 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/trunk/ (props changed) activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Connection.cs Propchange: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/ ------------------------------------------------------------------------------ Merged /activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x:r1376784 Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Connection.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Connection.cs?rev=1376786&r1=1376785&r2=1376786&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Connection.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Connection.cs Thu Aug 23 23:44:44 2012 @@ -443,6 +443,7 @@ namespace Apache.NMS.Stomp } Tracer.Info("Disposing of the Transport."); + transport.Stop(); transport.Dispose(); } catch(Exception ex)