Skip to content
New issue

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

incorrect implementation of RabbitMqQueueOptionsBuilder.SetAutoDelete() and ClientConnectionName(string connectionName) to RabbitMqOptionsBuilder to propogate the connection_name property #58

Merged
merged 5 commits into from
Aug 27, 2019

Conversation

jarikp
Copy link
Contributor

@jarikp jarikp commented Aug 26, 2019

Corrected error in RabbitMqQueueOptionsBuilder.SetAutoDelete(): it was impossible to configure QueueTTL unless autoDelete is ON, and those are completely independent parameters in RMQ.

The original version cannot be used to setting queue TTL and not enabling autoDelete at the same time. To workaround one had to disable auto-delete through SetAutoDelete() and set queue TTL as AddArgument("x-expires",TTL_MS).

I belive, it will fix issue 55

Rebus is MIT-licensed. The code submitted in this pull request needs to carry the MIT license too. By leaving this text in, I hereby acknowledge that the code submitted in the pull request has the MIT license and can be merged with the Rebus codebase.

jarikp added 2 commits August 26, 2019 15:32
…s impossible to configure QueueTTL unless autoDelete is ON, and those are completely independent parameters in RMQ.
… connectionName) to RabbitMqOptionsBuilder to propogate the connection_name property. Please note, that this implementation is only relevant for RabbitMQ.Client 5.1.0. When v6 is released, the implementation can be simplified, as shown in the comments.
@jarikp jarikp changed the title incorrect implementation of RabbitMqQueueOptionsBuilder.SetAutoDelete() incorrect implementation of RabbitMqQueueOptionsBuilder.SetAutoDelete() and ClientConnectionName(string connectionName) to RabbitMqOptionsBuilder to propogate the connection_name property Aug 26, 2019
@jarikp
Copy link
Contributor Author

jarikp commented Aug 26, 2019

The second commit could work as temporary fix for Issue 52, until version 6 of RMQ client is released:

image

@mookid8000 mookid8000 merged commit 4865b4d into rebus-org:master Aug 27, 2019
@mookid8000
Copy link
Member

cool! it'll be out in Rebus.RabbitMq 5.1.3 in a few minutes when the ci server finishes munching through the tests

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fixing queue TTL functionality
2 participants