Fix #5213: Correct retry ack handling in DownStreamMsgContext#5221
Fix #5213: Correct retry ack handling in DownStreamMsgContext#5221nagarjunahp88-byte wants to merge 1 commit into
Conversation
|
It has been 60 days since the last activity on this pull request. I am reaching out here to gently remind you that the Apache EventMesh community values every pull request, and please feel free to get in touch with the reviewers at any time. They are available to assist you in advancing the progress of your pull request and offering the latest feedback. If you encounter any challenges during development, seeking support within the community is encouraged. We sincerely appreciate your contributions to Apache EventMesh. |
|
This issue is not bug, because of wrong build & install plugin,no need to change the code. |
|
It has been 60 days since the last activity on this pull request. I am reaching out here to gently remind you that the Apache EventMesh community values every pull request, and please feel free to get in touch with the reviewers at any time. They are available to assist you in advancing the progress of your pull request and offering the latest feedback. If you encounter any challenges during development, seeking support within the community is encouraged. We sincerely appreciate your contributions to Apache EventMesh. |
What does this PR do?
This PR fixes the retry acknowledgment handling logic in
DownStreamMsgContextto correctly handle timeout scenariosand prevent incorrect retry behavior.
What was the problem?
The existing logic could incorrectly retry or acknowledge
messages even after the configured TTL was exceeded, leading
to unexpected message handling behavior.
How was it fixed?
Tests
Fixes #5213