Rob Godfrey created QPID-6667:
---------------------------------
Summary: [Java Broker] Unusued temporary queues are not deleted on
connection disconnect
Key: QPID-6667
URL: https://issues.apache.org/jira/browse/QPID-6667
Project: Qpid
Issue Type: Bug
Components: Java Broker
Reporter: Rob Godfrey
Fix For: 6.0 [Java]
Creating a temporary queue, never using it and then closing the connection
leaves the (unused) temporary queue on the broker
The following code snippet reproduce the issue
{code}
System.setProperty((ClientProperties.AMQP_VERSION), "0-9-1");
AMQConnection connection = new AMQConnection("localhost", 5672,
"guest", "guest", "", "/test");
Session session = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
for(int i = 0; i < 100; i++)
{
final TemporaryQueue tmpQ = session.createTemporaryQueue();
}
System.exit(0);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]