Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 3015 invoked from network); 25 Jun 2008 18:52:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jun 2008 18:52:32 -0000 Received: (qmail 13420 invoked by uid 500); 25 Jun 2008 18:52:33 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 13400 invoked by uid 500); 25 Jun 2008 18:52:33 -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 13391 invoked by uid 99); 25 Jun 2008 18:52:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jun 2008 11:52:33 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 25 Jun 2008 18:51:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7A1502388A02; Wed, 25 Jun 2008 11:52:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r671635 - /activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs Date: Wed, 25 Jun 2008 18:52:11 -0000 To: commits@activemq.apache.org From: jgomes@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080625185211.7A1502388A02@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jgomes Date: Wed Jun 25 11:52:11 2008 New Revision: 671635 URL: http://svn.apache.org/viewvc?rev=671635&view=rev Log: Apply patch from Chris Fraire. Fixes [AMQNET-90]. (See https://issues.apache.org/activemq/browse/AMQNET-90) Modified: activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs Modified: activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs?rev=671635&r1=671634&r2=671635&view=diff ============================================================================== --- activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs (original) +++ activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/MessageConsumer.cs Wed Jun 25 11:52:11 2008 @@ -91,6 +91,7 @@ { if (asyncDelivery.CompareAndSet(false, true)) { Thread thread = new Thread(DispatchLoop); + thread.IsBackground = true; thread.Start(); } }