33 lines
1.1 KiB
YAML
Raw Normal View History

2024-07-10 22:25:27 +02:00
framework:
messenger:
failure_transport: failed
transports:
# https://symfony.com/doc/current/messenger.html#transport-configuration
async:
dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
retry_strategy:
max_retries: 3
multiplier: 2
failed: 'doctrine://default?queue_name=failed'
# sync: 'sync://'
default_bus: messenger.bus.default
buses:
2024-08-22 22:15:43 +02:00
messenger.bus.default: [ ]
2024-07-10 22:25:27 +02:00
routing:
Symfony\Component\Mailer\Messenger\SendEmailMessage: async
Symfony\Component\Notifier\Message\ChatMessage: async
Symfony\Component\Notifier\Message\SmsMessage: async
2024-08-27 00:09:25 +02:00
2024-08-26 23:45:30 +02:00
App\Message\OrderDomain: async
2024-08-27 00:09:25 +02:00
App\Message\ProcessWatchListsTrigger: async
App\Message\SendDomainEventNotif: async
App\Message\UpdateDomainsFromWatchlist: async
App\Message\UpdateRdapServers: async
2024-07-10 22:25:27 +02:00
# Route your messages to the transports
# 'App\Message\YourMessage': async