I want to unack message on failure and reprocess it after some time using solace-pubsubplus 1.6.0 python api.But I am not able to find such api in solace.
Can any one help me to solve this issue?
Thanks in advance
I want to unack message on failure and reprocess it after some time using solace-pubsubplus 1.6.0 python api.But I am not able to find such api in solace.
Can any one help me to solve this issue?
Thanks in advance
If I'm understanding correctly your situation is that you received a message, acknowledged it and now you had some failure and want to "un" acknowledge it. With traditional messaging APIs that isn't an option. Once you acknowledge the message you are telling the broker "I acknowledge that I have successfully processed this message and you can remove it". The broker then removes it from your queue so the broker can't "un" acknowledge it and make it reappear.
My suggestions would be as follows: