I am creating individual DLQ per queue and topic, with the following config, but the Dlq attribute of the created queues is false. Is this expected, I don't get option to replay the messages in the console for these DLQs either.
<http://activemq.2283324.n4.nabble.com/file/n4702207/false-dlq-attribute.png> I am using the following destination policy. <destinationPolicy> <policyMap> <policyEntries> <policyEntry topic=">" > <pendingMessageLimitStrategy> <constantPendingMessageLimitStrategy limit="1000"/> </pendingMessageLimitStrategy> </policyEntry> <policyEntry topic=">"> <deadLetterStrategy> <individualDeadLetterStrategy queuePrefix="DLQ." useQueueForQueueMessages="true" /> </deadLetterStrategy> </policyEntry> <policyEntry queue=">"> <deadLetterStrategy> <individualDeadLetterStrategy queuePrefix="DLQ." useQueueForQueueMessages="true" /> </deadLetterStrategy> </policyEntry> </policyEntries> </policyMap> </destinationPolicy> -- View this message in context: http://activemq.2283324.n4.nabble.com/Dlq-attribute-false-for-DLQs-created-with-individualDeadLetterStrategy-tp4702207.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.