Skip to content

Commit

Permalink
bug #36747 Queue name is a required parameter (theravel)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nicolas-grekas committed May 8, 2020
2 parents a609375 + 9d48eed commit e75c227
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -326,7 +326,7 @@ public function get(string $queueName): ?\AMQPEnvelope
// If we get a 404 for the queue, it means we need to set up the exchange & queue.
$this->setupExchangeAndQueues();

return $this->get();
return $this->get($queueName);
}

throw $e;
Expand Down

0 comments on commit e75c227

Please sign in to comment.