Messenger configuration

This commit is contained in:
Kacper Donat 2021-04-09 21:52:51 +02:00
parent d86c1fa0f8
commit af801110aa
2 changed files with 10 additions and 12 deletions

View File

@ -18,5 +18,5 @@ DATABASE_URL="sqlite:///%kernel.project_dir%/var/app.db"
###< doctrine/doctrine-bundle ###
###> symfony/messenger ###
MESSENGER_TRANSPORT_DSN="doctrine://default"
APP_EVENT_QUEUE_DSN="doctrine://default"
###< symfony/messenger ###

View File

@ -1,13 +1,11 @@
parameters:
env(APP_EVENT_QUEUE): "doctrine://default"
framework:
messenger:
# Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
# failure_transport: failed
messenger:
transports:
main: '%env(resolve:APP_EVENT_QUEUE)%'
sync: 'sync://'
transports:
# https://symfony.com/doc/current/messenger.html#transport-configuration
async: '%env(MESSENGER_TRANSPORT_DSN)%'
# failed: 'doctrine://default?queue_name=failed'
sync: 'sync://'
routing:
'App\Message\UpdateDataMessage': async
routing:
'App\Message\UpdateDataMessage': main