messenger.yaml 784 B

123456789101112131415161718
  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\Message\Mailer': async
  13. 'App\Message\Message\Export': async
  14. 'App\Message\Message\Typo3\Typo3Update': async
  15. 'App\Message\Message\Typo3\Typo3Delete': async
  16. 'App\Message\Message\Typo3\Typo3Undelete': async