Uh oh!
There was an error while loading. Please reload this page.
Handle missing HTTP3 error cases - #101923
Merged
rzikm merged 7 commits intoMay 21, 2024
Merged
Conversation
rzikm
commented
May 6, 2024
MemberAuthor
/azp run runtime-libraries-coreclr outerloop |
|
Azure Pipelines successfully started running 1 pipeline(s). |
ManickaP
commented
May 15, 2024
Member
#102202 might be related. |
rzikm
commented
May 15, 2024
MemberAuthor
I would prefer to handle this one separately, it does not look trivial and the callstack for that one is very weird It mixes read and write path together. |
rzikm
commented
May 15, 2024
MemberAuthor
/azp list |
rzikm
commented
May 15, 2024
MemberAuthor
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
rzikm
commented
May 15, 2024
MemberAuthor
Nevermind, spoke too soon, the other callstack in #102202 is much clearer. and the console log from the run shows that we closed the connection from our side, which explains why we would get the |
rzikm
commented
May 15, 2024
MemberAuthor
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
rzikm
commented
May 20, 2024
MemberAuthor
@dotnet/ncl can I get review on this? |
MihaZupan
approved these changes
May 21, 2024
Uh oh!
There was an error while loading. Please reload this page.
Ruihan-Yin pushed a commit
to Ruihan-Yin/runtime
that referenced
this pull request
May 30, 2024
* Check for HttpRequestError.HttpProtocolError when expecting HTTP3 protocol errors in test * WIP * Fix data race in ServerClosesOutboundControlStream_ClientClosesConnection * Handle more exceptions explicitly in Http3RequestStream * WIP * Remove debug guard * Fixdotnet#102202
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes#89097.
Fixes#102202.