From b05bca8bc3540849a98a3863c6ea7bea514a5141 Mon Sep 17 00:00:00 2001 From: Michael Petri Date: Thu, 26 Jul 2018 15:04:27 +0200 Subject: [PATCH] Change dsn env var name Since the flex receipe uses MESSENGER_TRANSPORT_DSN as env var name we should change this also in the documentation. https://github.com/symfony/recipes/tree/master/symfony/messenger/4.1 --- messenger.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/messenger.rst b/messenger.rst index 3f8d84473ee..61c7f4cf4ec 100644 --- a/messenger.rst +++ b/messenger.rst @@ -123,7 +123,7 @@ the messenger component, the following configuration should have been created: framework: messenger: transports: - amqp: "%env(MESSENGER_DSN)%" + amqp: "%env(MESSENGER_TRANSPORT_DSN)%" .. code-block:: xml @@ -139,7 +139,7 @@ the messenger component, the following configuration should have been created: - + @@ -150,7 +150,7 @@ the messenger component, the following configuration should have been created: $container->loadFromExtension('framework', array( 'messenger' => array( 'transports' => array( - 'amqp' => '%env(MESSENGER_DSN)%', + 'amqp' => '%env(MESSENGER_TRANSPORT_DSN)%', ), ), ));