Skip to content

Commit

Permalink
bug #54124 [Messenger] trigger retry logic when message is a redelive…
Browse files Browse the repository at this point in the history
…ry (nikophil)

This PR was merged into the 6.4 branch.

Discussion
----------

[Messenger] trigger retry logic when message is a redelivery

| Q             | A
| ------------- | ---
| Branch?       | 6.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Issues        | Fix #52903 #53311
| License       | MIT

This PR rollbacks #51756 which was an error

ping `@itcodeOstrowski` `@beermeat`

Commits
-------

e397200 [Messenger] trigger retry logic when message is a redelivery
  • Loading branch information
nicolas-grekas committed Mar 12, 2024
2 parents 9cce9a8 + e397200 commit ad56682
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Symfony/Component/Messenger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ CHANGELOG
* Add `HandlerDescriptor::getOptions`
* Add support for multiple Redis Sentinel hosts
* Add `--all` option to the `messenger:failed:remove` command
* `RejectRedeliveredMessageException` implements `UnrecoverableExceptionInterface` in order to not be retried
* Add `WrappedExceptionsInterface` interface for exceptions that hold multiple individual exceptions
* Deprecate `HandlerFailedException::getNestedExceptions()`, `HandlerFailedException::getNestedExceptionsOfClass()`
and `DelayedMessageHandlingException::getExceptions()` which are replaced by a new `getWrappedExceptions()` method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
/**
* @author Tobias Schultze <http://tobion.de>
*/
class RejectRedeliveredMessageException extends RuntimeException implements UnrecoverableExceptionInterface
class RejectRedeliveredMessageException extends RuntimeException
{
}

0 comments on commit ad56682

Please sign in to comment.