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.
AutorecoveringModel.IsClosed
true
1 parent 4e18f60 commit c5eddd1Copy full SHA for c5eddd1
projects/RabbitMQ.Client/client/impl/AutorecoveringModel.cs
@@ -132,7 +132,7 @@ public IBasicConsumer DefaultConsumer
132
set => InnerChannel.DefaultConsumer = value;
133
}
134
135
- public bool IsClosed => _innerChannel != null && _innerChannel.IsClosed;
+ public bool IsClosed => !IsOpen;
136
137
public bool IsOpen => _innerChannel != null && _innerChannel.IsOpen;
138
0 commit comments