Handle missing HTTP3 error cases#101923
Merged
rzikm merged 7 commits intodotnet:mainfrom May 21, 2024
Merged
Conversation
Member
Author
|
/azp run runtime-libraries-coreclr outerloop |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Member
|
#102202 might be related. |
Member
Author
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. |
Member
Author
|
/azp list |
Member
Author
|
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Member
Author
|
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 |
Member
Author
|
/azp run runtime-libraries stress-http |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Member
Author
|
@dotnet/ncl can I get review on this? |
MihaZupan
approved these changes
May 21, 2024
src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/Http3RequestStream.cs
Show resolved
Hide resolved
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 * Fix dotnet#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 free
to 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.