messenger.yaml 997 B

123456789101112131415161718192021222324
  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:
  8. dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
  9. retry_strategy:
  10. max_retries: 0
  11. failed: '%env(MESSENGER_TRANSPORT_DSN)%?queue_name=failed'
  12. sync: 'sync://'
  13. routing:
  14. # Route your messages to the transports
  15. 'App\Message\Message\Mailer': async
  16. 'App\Message\Message\Export': async
  17. 'App\Message\Message\Typo3\Typo3Update': async
  18. 'App\Message\Message\Typo3\Typo3Delete': async
  19. 'App\Message\Message\Typo3\Typo3Undelete': async
  20. 'App\Message\Message\OrganizationCreation': async
  21. 'App\Message\Message\OrganizationDeletion': async