[jboss-cvs] JBoss Messaging SVN: r3869 - branches/Branch_Stable/src/main/org/jboss/jms/server/endpoint.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 11 23:01:46 EDT 2008


Author: clebert.suconic at jboss.com
Date: 2008-03-11 23:01:46 -0400 (Tue, 11 Mar 2008)
New Revision: 3869

Modified:
   branches/Branch_Stable/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
Log:
Addnig trace to debug changes on JBMESSAGING-1089

Modified: branches/Branch_Stable/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
===================================================================
--- branches/Branch_Stable/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java	2008-03-12 02:51:48 UTC (rev 3868)
+++ branches/Branch_Stable/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java	2008-03-12 03:01:46 UTC (rev 3869)
@@ -984,6 +984,10 @@
 
    	if (rec == null)
    	{
+   	   if (trace) 
+   	   {
+   	      log.trace("Giving up replicateDeliveryResponseReceived as it was null");
+   	   }
    		//This is ok - may happen at failover
 
    	   // This can happen when the failover node is being changed
@@ -1027,6 +1031,7 @@
 	   			{
 	   				if (!delivered)
 	   				{
+	   				   log.trace("Cancelling delivery, as it came out of order");
    	   				// Response has come back out of order - this can happen when the failover node is being changed
 	   					// E.g. failover node changes, replicates start getting sent to the new failover node,
 	   					// then the new node requests to collect the deliveries from this node, at which point we deliver




More information about the jboss-cvs-commits mailing list