mirror of https://github.com/apache/activemq.git
interupt thread on exception
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@390056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a715f014e3
commit
e830585455
|
@ -22,7 +22,8 @@ class AsyncHelper {
|
|||
try {
|
||||
return helper.cycle();
|
||||
}
|
||||
catch (InterruptedException e) { /* */
|
||||
catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue