Skip to content

Commit

Permalink
Fixed client complete abort websocket that is sending (#7793)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunghwan2789 authored and michaelstaib committed Dec 3, 2024
1 parent 7cafe32 commit b0c4e1c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ await _session.Protocol.SendErrorMessageAsync(
{
try
{
await SendResultMessageAsync(item, ct);
// use original cancellation token here to keep the websocket open for other streams.
await SendResultMessageAsync(item, cancellationToken);
}
finally
{
Expand Down

0 comments on commit b0c4e1c

Please sign in to comment.