Skip to content

Commit 0dc0d9c

Browse files
committed
fix test
1 parent 0728ff0 commit 0dc0d9c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG-11x.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file.
88

99
- Quorum queues support [#359](https://github.com/vyuldashev/laravel-queue-rabbitmq/pull/359)
1010
- max-priority support [#422](https://github.com/vyuldashev/laravel-queue-rabbitmq/pull/422)
11+
- Ability to specify exchange and exchange_type when using pushRaw()[#420](https://github.com/vyuldashev/laravel-queue-rabbitmq/pull/420)
12+
- Remember exchanges once they have been verified [#407](https://github.com/vyuldashev/laravel-queue-rabbitmq/pull/407)
1113

1214
## [11.2.0 (2021-03-16)](https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v11.1.2...v11.2.0)
1315

src/Queue/RabbitMQQueue.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ public function isExchangeExists(string $exchange): bool
318318
if ($this->isExchangeDeclared($exchange)) {
319319
return true;
320320
}
321+
321322
try {
322323
// create a temporary channel, so the main channel will not be closed on exception
323324
$channel = $this->connection->channel();

0 commit comments

Comments
 (0)