10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c99058 commit af43833Copy full SHA for af43833
src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php
@@ -396,7 +396,7 @@ private function getExchangeRoutinKey(): ?string
396
$routingKey = $this->exchangeConfiguration['routing_key'] ?? null;
397
if (null === $routingKey && isset($this->queueConfiguration['routing_key'])) {
398
$routingKey = $this->queueConfiguration['routing_key'];
399
- @trigger_error('Setting routing key from queue configuration is deprecated. Use exchange configuration instead.', E_USER_DEPRECATED);
+ @trigger_error('Routing key from "queue" configuration is deprecated. Use "exchange" configuration instead.', E_USER_DEPRECATED);
400
}
401
402
return $routingKey;
0 commit comments