Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e75c227

Browse filesBrowse 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
Copy full SHA for e75c227

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php
+1-1Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.