Josh Byster created ARTEMIS-4793: ------------------------------------ Summary: OpenWire auto-created consumer queues are not marked as auto-created Key: ARTEMIS-4793 URL: https://issues.apache.org/jira/browse/ARTEMIS-4793 Project: ActiveMQ Artemis Issue Type: Bug Components: OpenWire Reporter: Josh Byster
I noticed that in AMQConsumer line 256: {code:java} session.getCoreSession().createQueue(new QueueConfiguration(queueName).setAddress(address).setFilterString(selector).setDurable(false).setTemporary(true).setInternal(internalAddress)); {code} 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. -- This message was sent by Atlassian Jira (v8.20.10#820010) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@activemq.apache.org For additional commands, e-mail: issues-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact