We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ec099 commit 5a873e4Copy full SHA for 5a873e4
projects/RabbitMQ.Client/client/impl/AutorecoveringConnection.cs
@@ -896,7 +896,12 @@ private void EnsureIsOpen()
896
private void HandleTopologyRecoveryException(TopologyRecoveryException e)
897
{
898
ESLog.Error("Topology recovery exception", e);
899
- throw e;
+ if (e.InnerException is AlreadyClosedException || e.InnerException is OperationInterruptedException || e.InnerException is TimeoutException)
900
+ {
901
+ throw e;
902
+ }
903
+ ESLog.Error($"Will not throw Topology Exception {e.InnerException?.GetType().FullName}.", e);
904
+
905
}
906
907
private void PropagateQueueNameChangeToBindings(string oldName, string newName)
0 commit comments