Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional HTTP/3 and QUIC fixes #40675

Merged
merged 2 commits into from
Aug 12, 2020
Merged

Conversation

scalablecory
Copy link
Contributor

Fix Content-Length: 0 handling.
Fix exception wrapping behavior.
Make MsQuic force async completion to avoid loading timing-sensitive MsQuic thread.

Fix exception wrapping behavior.
Make MsQuic async force async completion to avoid loading timing-sensitive MsQuic thread.
@scalablecory scalablecory added this to the 5.0.0 milestone Aug 11, 2020
@scalablecory scalablecory requested review from jkotalik, geoffkizer and a team August 11, 2020 18:19
@scalablecory scalablecory self-assigned this Aug 11, 2020
@ghost
Copy link

ghost commented Aug 11, 2020

Tagging subscribers to this area: @dotnet/ncl
See info in area-owners.md if you want to be subscribed.

@@ -276,6 +276,10 @@ public async Task<HttpResponseMessage> SendAsync(CancellationToken cancellationT
catch (Exception ex)
{
_stream.AbortWrite((long)Http3ErrorCode.InternalError);
if (ex is HttpRequestException)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code like this always makes me slightly queasy... feels like we are mixing exception usage across different layers of behavior. Not a huge deal, though.

@scalablecory scalablecory merged commit 8f24a74 into dotnet:master Aug 12, 2020
@ghost ghost locked as resolved and limited conversation to collaborators Dec 7, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants