You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per dotnet/runtime#55724 (comment) I found out that if I abort receive on the stream the second time, my error code might end up overwritten.
The test calls AbortRead(1234) on msquic stream and then the stream gets disposed, and that triggers AbortRead(0xffffffff) which we expected to be a no-op. The test expects peer to receive the first error code (1234). However, rarely the test can fail with peer receiving wrong (second) error code (0xffffffff=4294967295)
As per dotnet/runtime#55724 (comment) I found out that if I abort receive on the stream the second time, my error code might end up overwritten.
The test calls AbortRead(1234) on msquic stream and then the stream gets disposed, and that triggers AbortRead(0xffffffff) which we expected to be a no-op. The test expects peer to receive the first error code (1234). However, rarely the test can fail with peer receiving wrong (second) error code (0xffffffff=4294967295)
The text was updated successfully, but these errors were encountered: