attempt to get around the deadlock by detecting and interrupting the locked thread.  

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1501500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2013-07-09 19:53:26 +00:00
parent 840ca30e90
commit 34ce33613c
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public class HttpClientTransport extends HttpTransportSupport {
abortThread.start();
abortThread.join(2000);
if (!abortThread.isAlive()) {
if (abortThread.isAlive() && !httpMethod.isAborted()) {
abortThread.interrupt();
}
}