Closed
Description
When starting a QuicStream, we call MsQuicStreamStart
runtime/src/libraries/System.Net.Quic/src/System/Net/Quic/QuicStream.cs
Lines 238 to 255 in b432fc6
TryGetStreamExceptionForMsQuicStatus
attempts to classify the status code and behaves accordingly.
However, MsQuicStreamStart
can return QUIC_STATUS_ABORTED
, and in this case we will not receive any event because the stream is not considered started.
This may be the cause of some of the "The operation has timed out" CI failures.