Merge pull request #438 from TonyRoussel/add-message-deduplication-exchange
fix wrong exchange type check in ChannelImpl::declareExchange
This commit is contained in:
commit
d5a7f3cdd1
|
|
@ -290,7 +290,7 @@ Deferred &ChannelImpl::declareExchange(const std::string &name, ExchangeType typ
|
|||
else if (type == ExchangeType::topic) exchangeType = "topic";
|
||||
else if (type == ExchangeType::headers) exchangeType = "headers";
|
||||
else if (type == ExchangeType::consistent_hash) exchangeType = "x-consistent-hash";
|
||||
else if (type == ExchangeType::consistent_hash) exchangeType = "x-message-deduplication";
|
||||
else if (type == ExchangeType::message_deduplication) exchangeType = "x-message-deduplication";
|
||||
|
||||
// the boolean options
|
||||
bool passive = (flags & AMQP::passive) != 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue