messenger.yaml 878 B

12345678910111213141516171819
  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. transports:
  6. # https://symfony.com/doc/current/messenger.html#transport-configuration
  7. async: '%env(MESSENGER_TRANSPORT_DSN)%'
  8. failed: '%env(MESSENGER_TRANSPORT_DSN)%?queue_name=failed'
  9. sync: 'sync://'
  10. routing:
  11. # Route your messages to the transports
  12. 'App\Message\Command\MailerCommand': async
  13. 'App\Message\Command\Parameters\AverageChange': async
  14. 'App\Message\Command\Export': async
  15. 'App\Message\Command\Typo3\Typo3UpdateCommand': async
  16. 'App\Message\Command\Typo3\Typo3DeleteCommand': async
  17. 'App\Message\Command\Typo3\Typo3UndeleteCommand': async