8000 Change dsn env var name by michaelpetri · Pull Request #10119 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Change dsn env var name #10119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
6 changes: 3 additions & 3 deletions messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -139,7 +139,7 @@ the messenger component, the following configuration should have been created:

<framework:config>
<framework:messenger>
<framework:transport name="amqp" dsn="%env(MESSENGER_DSN)%" />
<framework:transport name="amqp" dsn="%env(MESSENGER_TRANSPORT_DSN)%" />
</framework:messenger>
</framework:config>
</container>
Expand All @@ -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)%',
),
),
));
Expand Down
0