You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2006/03/30 12:01:12 UTC

svn commit: r390056 - /incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java

Author: jstrachan
Date: Thu Mar 30 02:01:09 2006
New Revision: 390056

URL: http://svn.apache.org/viewcvs?rev=390056&view=rev
Log:
interupt thread on exception

Modified:
    incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java

Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java?rev=390056&r1=390055&r2=390056&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java (original)
+++ incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/stomp/AsyncHelper.java Thu Mar 30 02:01:09 2006
@@ -22,7 +22,8 @@
             try {
                 return helper.cycle();
             }
-            catch (InterruptedException e) { /* */
+            catch (InterruptedException e) { 
+                Thread.currentThread().interrupt();
             }
         }
     }