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 89E15D0B9 for ; Thu, 23 Aug 2012 14:46:02 +0000 (UTC) Received: (qmail 61693 invoked by uid 500); 23 Aug 2012 14:46:02 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 61662 invoked by uid 500); 23 Aug 2012 14:46:02 -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 61654 invoked by uid 99); 23 Aug 2012 14:46:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Aug 2012 14:46:02 +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 14:46:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 350DD23888EA for ; Thu, 23 Aug 2012 14:45:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1376513 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java Date: Thu, 23 Aug 2012 14:45:18 -0000 To: commits@activemq.apache.org From: gtully@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120823144518.350DD23888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gtully Date: Thu Aug 23 14:45:17 2012 New Revision: 1376513 URL: http://svn.apache.org/viewvc?rev=1376513&view=rev Log: trace temp dest recreation by state tracker Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java?rev=1376513&r1=1376512&r2=1376513&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java (original) +++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java Thu Aug 23 14:45:17 2012 @@ -307,7 +307,11 @@ public class ConnectionStateTracker exte throws IOException { // Restore the connection's temp destinations. for (Iterator iter2 = connectionState.getTempDestinations().iterator(); iter2.hasNext();) { - transport.oneway((DestinationInfo)iter2.next()); + DestinationInfo info = (DestinationInfo)iter2.next(); + transport.oneway(info); + if (LOG.isDebugEnabled()) { + LOG.debug("tempDest: " + info.getDestination()); + } } }