You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an error when I send a message one but I see multiple invocations of the same message in retry.go
the message gets dequeued after the first success, when it attempts to do so in the second attempt the dequeue fails as the message is not in the queue anymore as it was dequeued in the first attempt.
This happens in case of service control endpoint and it is not an expected behaviour
To make things worse ubbagent panics resulting in the system to crash
I believe when this happens it should only log the error and move on
So we have 2 problems at hand that we must discuss:
why should the dequeue panic when we can just log the error
why would it try to send it twice in the first place when it already had a success sending it in the service control
The text was updated successfully, but these errors were encountered:
I encountered an error when I send a message one but I see multiple invocations of the same message in retry.go
the message gets dequeued after the first success, when it attempts to do so in the second attempt the dequeue fails as the message is not in the queue anymore as it was dequeued in the first attempt.
This happens in case of service control endpoint and it is not an expected behaviour
To make things worse ubbagent panics resulting in the system to crash
I believe when this happens it should only log the error and move on
So we have 2 problems at hand that we must discuss:
The text was updated successfully, but these errors were encountered: