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 f0d4b74 commit 4969d61Copy full SHA for 4969d61
src/Smdn.Net.MuninNode/Smdn.Net.MuninNode/NodeBase.cs
@@ -489,6 +489,9 @@ CancellationToken cancellationToken
489
LogSessionOperationCanceledWhileReceiving(Logger, null);
490
throw;
491
}
492
+ catch (ObjectDisposedException) {
493
+ break; // client has been disconnected/disposed
494
+ }
495
#pragma warning disable CA1031
496
catch (Exception ex) {
497
if (Logger is not null)
0 commit comments