Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelsavara authored Jul 15, 2024
1 parent 2c5fdbe commit 80b8543
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ private async Task RunConsoleMessagesPump(WebSocket socket, CancellationToken to
}
}
}
catch (WebSocketException wse)
{
// this could happen when WebWorker is closed or when browser died
_logger.LogDebug($"RunConsoleMessagesPump failed: {wse}");
}
catch (OperationCanceledException oce)
{
if (!token.IsCancellationRequested)
Expand Down

0 comments on commit 80b8543

Please sign in to comment.