We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using RabbitMq.Client 6.8.1
var factory = new ConnectionFactory { UserName = "rabbit", Password = "rabbit", HostName = "localhost", VirtualHost = "/", Port = 5672, AutomaticRecoveryEnabled = true }; using (var client = factory.CreateConnection()) { using var model = client.CreateModel(); model.QueueDeclare("queue", true, true, false, new Dictionary<string, object>()); }
this code generates a non durable queue
when i manually create a durable queue in the management of the broker the queue is created correctly so I assume its a client side issue.
x
the queue is durable
No response
The text was updated successfully, but these errors were encountered:
now i found the issue exlusive seems to overrule durable. I think the client should throw in case both options are set.
Sorry, something went wrong.
now i found the issue exlusive seems to overrule durable. I think the client should throw in case both options are set
We'll take it into consideration for version 7 or 8 of this client.
FWIW, the Java client does not validate the combination of exclusive & durable.
lukebakken
No branches or pull requests
Describe the bug
using RabbitMq.Client 6.8.1
this code generates a non durable queue
when i manually create a durable queue in the management of the broker the queue is created correctly so I assume its a client side issue.
Reproduction steps
x
Expected behavior
the queue is durable
Additional context
No response
The text was updated successfully, but these errors were encountered: