You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by fmansoor <fa...@gmail.com> on 2015/09/23 04:09:08 UTC

How to remove "ActiveMQ" prefix from DLQ names

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.