Skip to content

Commit

Permalink
Merge branch '5.4' into 6.4
Browse files Browse the repository at this point in the history
* 5.4:
  Do not produce notice/warning when consuming from multiple transports and explicitly listed queues
  [FrameworkBundle] Check if the _route attribute exists on the request
  [HttpClient] Make retry strategy work again
  [Mailer] Fix signed emails breaking the profiler
  [Validator] Update Spanish (es) translations
  Fix SQS visibility_timeout type
  • Loading branch information
nicolas-grekas committed Feb 14, 2024
2 parents 838efb3 + 456958e commit e1d4c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transport/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public function channel(): \AMQPChannel
public function queue(string $queueName): \AMQPQueue
{
if (!isset($this->amqpQueues[$queueName])) {
$queueConfig = $this->queuesOptions[$queueName];
$queueConfig = $this->queuesOptions[$queueName] ?? [];

$amqpQueue = $this->amqpFactory->createQueue($this->channel());
$amqpQueue->setName($queueName);
Expand Down

0 comments on commit e1d4c2f

Please sign in to comment.