Commit 2001c1dc authored by xXjoakinXx's avatar xXjoakinXx Committed by Savorboard

Prefixed arguments in RabbitMQConsumerClient.cs (#300)

parent 0ffdca79
......@@ -103,7 +103,7 @@ namespace DotNetCore.CAP.RabbitMQ
{
{"x-message-ttl", _rabbitMQOptions.QueueMessageExpires}
};
_channel.QueueDeclare(_queueName, true, false, false, arguments);
_channel.QueueDeclare(_queueName, durable: true, exclusive: false, autoDelete: false, arguments);
}
#region events
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment