mirror of https://github.com/YGGverse/HLState.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
861 B
24 lines
861 B
framework: |
|
messenger: |
|
failure_transport: failed |
|
|
|
transports: |
|
# https://symfony.com/doc/current/messenger.html#transport-configuration |
|
async: |
|
dsn: '%env(MESSENGER_TRANSPORT_DSN)%' |
|
options: |
|
use_notify: true |
|
check_delayed_interval: 60000 |
|
retry_strategy: |
|
max_retries: 3 |
|
multiplier: 2 |
|
failed: 'doctrine://default?queue_name=failed' |
|
# sync: 'sync://' |
|
|
|
routing: |
|
Symfony\Component\Mailer\Messenger\SendEmailMessage: async |
|
Symfony\Component\Notifier\Message\ChatMessage: async |
|
Symfony\Component\Notifier\Message\SmsMessage: async |
|
|
|
# Route your messages to the transports |
|
# 'App\Message\YourMessage': async
|
|
|