Skip to content

Commit 85cd4eb

Browse files
committed
Fix the fix :D
1 parent 995c5e8 commit 85cd4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.Net.Quic/src/System/Net/Quic/QuicConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ private unsafe int HandleEventShutdownComplete()
539539
_acceptQueue.Writer.TryComplete(exception);
540540
_connectedTcs.TrySetException(exception);
541541
_shutdownTokenSource.Cancel();
542-
_shutdownTcs.TrySetResult();
542+
_shutdownTcs.TrySetResult(final: true);
543543
return QUIC_STATUS_SUCCESS;
544544
}
545545
private unsafe int HandleEventLocalAddressChanged(ref LOCAL_ADDRESS_CHANGED_DATA data)

0 commit comments

Comments
 (0)