Skip to content

Commit f20fd3c

Browse files
committed
[amqp] Configure by string DSN.
1 parent 88a0957 commit f20fd3c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Tests/Functional/RpcClientTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
32
namespace Enqueue\Bundle\Tests\Functional;
43

54
/**

Tests/Functional/UseCasesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public function provideEnqueueConfigs()
2323
'amqp' => [
2424
'host' => getenv('SYMFONY__RABBITMQ__HOST'),
2525
'port' => getenv('SYMFONY__RABBITMQ__AMQP__PORT'),
26-
'login' => getenv('SYMFONY__RABBITMQ__USER'),
27-
'password' => getenv('SYMFONY__RABBITMQ__PASSWORD'),
26+
'user' => getenv('SYMFONY__RABBITMQ__USER'),
27+
'pass' => getenv('SYMFONY__RABBITMQ__PASSWORD'),
2828
'vhost' => getenv('SYMFONY__RABBITMQ__VHOST'),
2929
'lazy' => false,
3030
]

0 commit comments

Comments
 (0)