messenger.yaml 907 B

123456789101112131415161718192021
  1. framework:
  2. messenger:
  3. # Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
  4. failure_transport: failed
  5. reset_on_message: true
  6. transports:
  7. # https://symfony.com/doc/current/messenger.html#transport-configuration
  8. async: '%env(MESSENGER_TRANSPORT_DSN)%'
  9. failed: '%env(MESSENGER_TRANSPORT_DSN)%?queue_name=failed'
  10. sync: 'sync://'
  11. routing:
  12. # Route your messages to the transports
  13. 'App\Message\Command\MailerCommand': async
  14. 'App\Message\Command\Parameters\AverageChange': async
  15. 'App\Message\Command\Export': async
  16. 'App\Message\Command\Typo3\Typo3UpdateCommand': async
  17. 'App\Message\Command\Typo3\Typo3DeleteCommand': async
  18. 'App\Message\Command\Typo3\Typo3UndeleteCommand': async