-
Notifications
You must be signed in to change notification settings - Fork 621
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
Exporting IsClosed for Channel #486
Exporting IsClosed for Channel #486
Conversation
I'm having the same problem, can someone pls merge that PR? |
Same problem too |
Hey folks, I'm posting this on behalf of the core team. As you have noticed, this client hasn't seen a lot of activity recently. Because this client has a long tradition of "no breaking public API changes", certain We would like to thank @streadway Team RabbitMQ has adopted a "hard fork" of this client What do we mean by "hard fork" and what does it mean for you? The entire history of the project What does change is that this new fork will accept reasonable breaking API changes according If your PR hasn't been accepted or reviewed, you are welcome to re-submit it for Note that it is a high season for holidays in some parts of the world, so we may be slower Thank you for using RabbitMQ and contributing to this client. On behalf of the RabbitMQ core team, |
Hey @michaelklishin, Thank you so much for the updates, I'd just re-submitted the PR on the new repository 😃 For those who still want this feature, here's the link for us to discuss 😄 |
I needed to access the Channel status on a project that I'm participating in. So, I just made the "closed" field public on
channel.go
in the same way as it is onconnection.go
. Nothing too fancy, but I think it is important to get the actual status of the channel.Something that we have on RabbitMQ's client on Python (pika) and .Net (RabbitMQ) and I missed here.
Hope this helps,
Best regards.