From 575539a43738ab5c8c56d0edd0fb0969c45b0023 Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Tue, 4 Nov 2025 07:45:36 -0500 Subject: [PATCH] Enable sync transport in messenger configuration (#1464) Very little downside to enabling by default, as it's (almost) the same as not sending something through a transport at all. --- symfony/messenger/6.0/config/packages/messenger.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/messenger/6.0/config/packages/messenger.yaml b/symfony/messenger/6.0/config/packages/messenger.yaml index 672b6c40..19db483d 100644 --- a/symfony/messenger/6.0/config/packages/messenger.yaml +++ b/symfony/messenger/6.0/config/packages/messenger.yaml @@ -7,7 +7,7 @@ framework: # https://symfony.com/doc/current/messenger.html#transport-configuration # async: '%env(MESSENGER_TRANSPORT_DSN)%' # failed: 'doctrine://default?queue_name=failed' - # sync: 'sync://' + sync: 'sync://' routing: # Route your messages to the transports