8000 bug #36747 Queue name is a required parameter (theravel) · symfony/symfony@e75c227 · GitHub
[go: up one dir, main page]

Skip to content

Commit e75c227

Browse files
bug #36747 Queue name is a required parameter (theravel)
This PR was submitted for the 5.0 branch but it was merged into the 4.4 branch instead. Discussion ---------- Queue name is a required parameter | Q | A | ------------- | --- | Branch? | 5.0 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - Queue name is required parameter, which means this block will just fail Commits ------- 9d48eed Queue name is a required parameter
2 parents a609375 + 9d48eed commit e75c227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public function get(string $queueName): ?\AMQPEnvelope
326326
// If we get a 404 for the queue, it means we need to set up the exchange & queue.
327327
$this->setupExchangeAndQueues();
328328

329-
return $this->get();
329+
return $this->get($queueName);
330330
}
331331

332332
throw $e;

0 commit comments

Comments
 (0)
0