[jboss-cvs] JBoss Messaging SVN: r2274 - trunk/src/main/org/jboss/jms/server/endpoint.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 12 11:25:21 EST 2007


Author: clebert.suconic at jboss.com
Date: 2007-02-12 11:25:21 -0500 (Mon, 12 Feb 2007)
New Revision: 2274

Modified:
   trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
Log:
http://jira.jboss.org/jira/browse/JBMESSAGING-827 - fix

Modified: trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java
===================================================================
--- trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java	2007-02-12 16:21:15 UTC (rev 2273)
+++ trunk/src/main/org/jboss/jms/server/endpoint/ServerSessionEndpoint.java	2007-02-12 16:25:21 UTC (rev 2274)
@@ -927,7 +927,8 @@
          
          if (rec == null)
          {
-            throw new IllegalStateException("Cannot find delivery to acknowledge " + ack);
+            log.warn("Cannot find delivery to acknowledge " + ack);
+            continue;
          }
                            
          deliveryCallback.addDeliveryId(id);




More information about the jboss-cvs-commits mailing list