Handlers could be executed twice after a Message release
Closed this issue · 0 comments
masterjus commented
Description:
Let's imagine hat we have 3 listeners on an event.
The first Listener was successfuly ran. The second was failed and the Message has been released. The third Listener was skept because the second failed.
The Message is back to the queue and we try to process it again. First Listener will be executed again.
Expected Result: Successful Listeners should not be executed after a Message release.