jasonrbriggs / stomp.py

“stomp.py” is a Python client library for accessing messaging servers (such as ActiveMQ or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing.
Apache License 2.0
491 stars 167 forks source link

Configure the redelivery for a message #414

Open priyankabishnoi opened 1 year ago

priyankabishnoi commented 1 year ago

Hi team

I am using stomp.py to make a connection to Active MQ. I have seen that If the message takes too long to process then the message gets redelivered to the queue. I know that in Active MQ connection we can edit the redelivery properties. However i am unable to understand how to provide these in stomp . can someone help me with this? Also i tried acknowledging the message before processing but it seems not to be working all the time.