Closed
Description
Symfony version(s) affected: 5.2 or above
Description
this feature doesn't work with symfony debug-pack
How to reproduce
- clone the demo repository
- remove composer.lock
- run composer install
- configure messenger routing dns
- start symfony server
- open http://localhost/demo
at this point it should work as expected, but if you add symfony debug-pack
composer require debug
you will get an exception like this
Attempted to call an undefined method named "setCallbackWrapper" of class "Symfony\Component\Cache\Adapter\TraceableAdapter".
Possible Solution
maybe add \Symfony\Component\Cache\Traits\ContractsTrait
in \Symfony\Component\Cache\Adapter\TraceableAdapter
also?