You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2012/08/23 16:45:18 UTC

svn commit: r1376513 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/state/ConnectionStateTracker.java

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());
+            }
         }
     }