ActiveMQ Artemis (with Python/Stomp-py) – Nack not resulting in DLQ
I’m trying to setup a queue with a DLQ. From everything I understand online and all the examples I’ve it should be enough to cap the max-delivery-attempts
in order for a messages to be send to it’s DLQ. The queue and address are configured as Anycast, other settings left as default.
ActiveMQ Artemis and stomp.py using client acknowledgment not behaving as expected
I can’t get the ack=’client’ to behave as expected. I think that a message consumed by the code below should nack it and send it to the DLQ. But no! The message just disappears. I guess that it is considered processed.If, on the other hand, I just throw an error, it does end up in the DLQ.