50 lines
1.7 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:
2025-10-29 00:47:59 +01:00
dsn: '%env(MESSENGER_ASYNC_TRANSPORT_DSN)%'
2024-07-10 22:25:27 +02:00
retry_strategy:
max_retries: 3
multiplier: 2
rdap_high:
dsn: '%env(MESSENGER_RDAP_HIGH_TRANSPORT_DSN)%'
2025-10-29 20:11:18 +01:00
options:
consumer: '%env(MESSENGER_CONSUMER_NAME)%'
retry_strategy:
delay: 1000
multiplier: 2
max_delay: 86400000
rdap_low:
dsn: '%env(MESSENGER_RDAP_LOW_TRANSPORT_DSN)%'
options:
consumer: '%env(MESSENGER_CONSUMER_NAME)%'
retry_strategy:
delay: 2000
multiplier: 2
max_delay: 86400000
2024-07-10 22:25:27 +02:00
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
App\Message\DetectDomainChange: async
App\Message\ProcessAllWatchlist: async
App\Message\ProcessWatchlist: async
2024-08-27 00:09:25 +02:00
App\Message\UpdateRdapServers: async
2025-01-16 21:49:02 +01:00
App\Message\ValidateConnectorCredentials: async
App\Message\UpdateDomain: rdap_high