From 073044f2fae596647438bc552e5eb5c82c0aadac Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Thu, 3 Jul 2025 12:13:13 +0200 Subject: [PATCH] Remove new transporters, use existing async one --- config/packages/messenger.yaml | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/config/packages/messenger.yaml b/config/packages/messenger.yaml index 3bcfc1032..c3ccc1ecc 100644 --- a/config/packages/messenger.yaml +++ b/config/packages/messenger.yaml @@ -45,27 +45,6 @@ framework: auto_setup: false - immediate_email: - dsn: '%env(MESSENGER_TRANSPORT_DSN)%/priority' - options: - queue_name: immediate_notifications - exchange: - name: notifications - type: direct - retry_strategy: - max_retries: 3 - delay: 1000 - multiplier: 2 - - daily_email: - dsn: '%env(MESSENGER_TRANSPORT_DSN)%' - options: - queue_name: daily_notifications - exchange: - name: notifications - type: direct - # No automatic consumption - handled by cron job - routing: # routes added by chill-bundles recipes 'Chill\CalendarBundle\Messenger\Message\CalendarRangeMessage': async @@ -82,9 +61,7 @@ framework: 'Chill\MainBundle\Workflow\Messenger\PostSignatureStateChangeMessage': priority 'Chill\MainBundle\Workflow\Messenger\PostPublicViewMessage': async 'Chill\MainBundle\Service\Workflow\CancelStaleWorkflowMessage': async - 'Chill\MainBundle\Notification\Email\NotificationEmailMessages\SendImmediateNotificationEmailMessage': immediate_email - 'Chill\MainBundle\Notification\Email\NotificationEmailMessages\ScheduleDailyNotificationEmailMessage': daily_email - 'Chill\MainBundle\Notification\Email\NotificationEmailMessages\SendDailyDigestMessage': daily_email + 'Chill\MainBundle\Notification\Email\NotificationEmailMessages\SendImmediateNotificationEmailMessage': async # end of routes added by chill-bundles recipes # Route your messages to the transports # 'App\Message\YourMessage': async