You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quite recently I was using Hutch to publish some messages to RabbitMQ and I stopped the RabbitMQ server during that process (on purpose, for test purposes).
My application ended up getting the following exception:
My publisher implementation already handles Hutchexceptions
I was wondering if Hutch should be handling Bunnyexceptions so that whoever is using Hutch does not need to know that Hutch is using Bunny under the hood.
@michaelklishin and @hutch-community : What's your thoughts on it?
The text was updated successfully, but these errors were encountered:
I find it unfortunate that Hutch had to re-invent pretty much the same exceptions but since it already has an exception for publishing errors, we can do that.
The exception you are seeing is not thrown on publish, though. It is RabbitMQ closing connection because it is shutting down.
Quite recently I was using Hutch to publish some messages to RabbitMQ and I stopped the RabbitMQ server during that process (on purpose, for test purposes).
My application ended up getting the following exception:
My publisher implementation already handles
Hutch
exceptionsI was wondering if
Hutch
should be handlingBunny
exceptions so that whoever is usingHutch
does not need to know thatHutch
is usingBunny
under the hood.@michaelklishin and @hutch-community : What's your thoughts on it?
The text was updated successfully, but these errors were encountered: