You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "james strachan (JIRA)" <ji...@activemq.org> on 2006/03/17 12:18:26 UTC

[jira] Resolved: (AMQ-627) ActiveMQConnection ignores interrupts (sometimes)

     [ http://jira.activemq.org/jira//browse/AMQ-627?page=all ]
     
james strachan resolved AMQ-627:
--------------------------------

    Resolution: Fixed

I think I've got them all licked now - let me know if you can find any more I've missed; but I think I got them all :)

> ActiveMQConnection ignores interrupts (sometimes)
> -------------------------------------------------
>
>          Key: AMQ-627
>          URL: http://jira.activemq.org/jira//browse/AMQ-627
>      Project: ActiveMQ
>         Type: Bug

>     Versions: 4.0 M4
>     Reporter: William Hoyle
>      Fix For: 4.0 M5

>
>
> There are a bunch of these in the code:
>                 try {
>                         ...
>                 } catch (InterruptedException e) {
>                 }
> Which should be
>                 try {
>                         ...
>                 } catch (InterruptedException e) {
>                         Thread.currentThread().interrupt();
>                 }
> ... or 
>                 try {
>                         ...
>                 } catch (InterruptedException e) {
>                         throw JMSExceptionSupport.create(e);
>                 }
> ... or whatever. Just don't throw away my interrupts.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.activemq.org/jira//secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira