-
Notifications
You must be signed in to change notification settings - Fork 48
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
Update RabbitMQ transport connection string options #4755
base: master
Are you sure you want to change the base?
Conversation
using global::RabbitMQ.Client; | ||
|
||
class ConnectionFactory | ||
{ | ||
readonly string endpointName; | ||
readonly global::RabbitMQ.Client.ConnectionFactory connectionFactory; | ||
readonly object lockObject = new object(); | ||
readonly SemaphoreSlim semaphoreSlim = new(1, 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget to properly dispose the semaphore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the heads up. I'll take another look at this. I thought that the semaphoreSlim.Release()
did the dispose, but maybe putting this in a using
statement would be better so that the semaphoreSlim is always disposed?
No description provided.