zenstruck / messenger-test

Assertions and helpers for testing your symfony/messenger queues.
MIT License
218 stars 15 forks source link

Disable retries by default, add option to enable #37

Closed kbond closed 2 years ago

kbond commented 2 years ago

1381f279dc4b07c475474113fa086606704319af fixes a BC break introduced in #34. That PR fixed an issue where the transport names were not being properly registered with the Worker. This enabled the retry system but broke code that was not expecting retries to be made.

8a434ad5b3f2e8abdd5516d86f0339cb2a598adc adds the ability to enable retries for your test transports (via dsn config). I believe this was @nikophil's original intention with #34.