Tests hang with numerous threads waiting to be notified inside AMQSession
-------------------------------------------------------------------------
Key: QPID-605
URL: https://issues.apache.org/jira/browse/QPID-605
Project: Qpid
Issue Type: Bug
Components: Java Client
Affects Versions: M2
Environment: Any
Reporter: Robert Greig
Tests hang because during session close all threads are blocked at:
while (!_closed.get() && connectionStopped())
{
try
{
_lock.wait(); // HERE!!!!
}
catch (InterruptedException e)
{
// ignore
}
}
or
while (connectionStopped())
{
_lock.wait(); // HERE!!!
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.