[Messenger] Improve error message readability

Since slashes are escaped, vhosts are not very readable.
This commit is contained in:
Laurent VOULLEMIER 2020-09-14 16:48:28 +02:00
parent cc8cee9111
commit 63bc620efa
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ class ConnectionTest extends TestCase
public function testObfuscatePasswordInDsn()
{
$this->expectException('AMQPException');
$this->expectExceptionMessage('Could not connect to the AMQP server. Please verify the provided DSN. ({"host":"localhost","port":5672,"vhost":"\/","login":"user","password":"********"})');
$this->expectExceptionMessage('Could not connect to the AMQP server. Please verify the provided DSN. ({"host":"localhost","port":5672,"vhost":"/","login":"user","password":"********"})');
$factory = new TestAmqpFactory(
$amqpConnection = $this->createMock(\AMQPConnection::class),
$amqpChannel = $this->createMock(\AMQPChannel::class),

View File

@ -384,7 +384,7 @@ class Connection
$credentials['password'] = '********';
unset($credentials['delay']);
throw new \AMQPException(sprintf('Could not connect to the AMQP server. Please verify the provided DSN. (%s).', json_encode($credentials)), 0, $e);
throw new \AMQPException(sprintf('Could not connect to the AMQP server. Please verify the provided DSN. (%s).', json_encode($credentials, \JSON_UNESCAPED_SLASHES)), 0, $e);
}
$this->amqpChannel = $this->amqpFactory->createChannel($connection);