Skip to content

Commit c36e667

Browse files
authored
Merge pull request #5 from WalentinG/5.1.1
Change destination and source exchange for RabbitMQ exchange bind
2 parents 6e57ff2 + 0ff8dca commit c36e667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Amqp/PhpInnacle/PhpInnacleConfigurator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ function () use ($exchange, $binds): \Generator
204204
);
205205

206206
yield $this->channel->exchangeBind(
207-
destination: $sourceExchange->name,
208-
source: $exchange->name,
207+
destination: $exchange->name,
208+
source: $sourceExchange->name,
209209
routingKey: (string) $bind->routingKey,
210210
noWait: true
211211
);

0 commit comments

Comments
 (0)