I am using "individualDeadLetterStrategy" to create individual DLQs for queues and topics but the created DLQ has an ActiveMQ prefix, is this expected? and is there are way to remove it?
I am using the following destinationPolicy <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/How-to-remove-ActiveMQ-prefix-from-DLQ-names-tp4702209.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.