Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Not A Bug
-
None
-
None
-
None
Description
I noticed that in AMQConsumer line 256:
session.getCoreSession().createQueue(new QueueConfiguration(queueName).setAddress(address).setFilterString(selector).setDurable(false).setTemporary(true).setInternal(internalAddress));
We do not set the autoCreated flag, which does not make it eligible for deletion automatically unless auto-delete-created-queues is set to true (easy workaround, but maybe not technically necessary).
Effectively we do not define any queues on startup and none of them end up being marked as auto-created for this reason.