messenger.yaml 620 B

123456789101112131415
  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\Export': async
  13. 'App\Message\Command\Parameters\AverageChange': async