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

Consistent ConfigureAwait on Loopback, RemoteExecutor.DisposeAsync #102699

Merged
merged 34 commits into from
Jun 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b35b727
Add ConfigureAwait(false) to various place
liveans May 26, 2024
adb4656
Revert "Disable parallel test execution for QUIC and HTTP/3 (#101569)"
liveans May 26, 2024
e9cab4d
Disable another AltSvc test
liveans May 26, 2024
2558f17
Disable AltSvc for H/3
liveans May 27, 2024
10eeef1
Add ConfigureAwait to Loopback
liveans May 27, 2024
cc2401b
Put unwanted change back
liveans May 27, 2024
e025609
Revert "Put unwanted change back"
liveans May 27, 2024
b335fab
Delete ConfigureAwait from test code
liveans May 27, 2024
ba37b90
Increase Idle Timeout for Http3LoopbackServer
liveans May 29, 2024
f2c4731
Convert RemoteExecutor Disposal to async
liveans May 30, 2024
8ce9194
Add using
liveans May 30, 2024
9c10f97
Delete custom IdleTimeout
liveans May 30, 2024
1d8afca
Delete Async Disposal of RemoteExecutor
liveans May 30, 2024
d5b78b0
Add RemoteExecutor.DisposeAsync and use it on System.Net.Mail
liveans May 31, 2024
febf3dd
Add RemoteExecutor.DisposeAsync and use it on System.Net.
liveans May 31, 2024
e1117e2
Add RemoteExecutor.DisposeAsync and use it on System.Net.Primitives
liveans May 31, 2024
229304e
Add RemoteExecutor.DisposeAsync and use it on System.Net.Quic
liveans May 31, 2024
d6fba45
Add RemoteExecutor.DisposeAsync and use it on System.Net.Requests
liveans May 31, 2024
e52bce6
Add RemoteExecutor.DisposeAsync and use it on System.Net.Security
liveans May 31, 2024
8759f94
Add RemoteExecutor.DisposeAsync and use it on System.Net.Sockets
liveans May 31, 2024
99cd44e
Add RemoteExecutor.DisposeAsync and use it on Common System.Net
liveans May 31, 2024
e3dbb51
Add RemoteExecutor.DisposeAsync and use it on System.Net.Http - 2
liveans May 31, 2024
9c7184c
Add RemoteExecutor.DisposeAsync and use it on System.Net.Ping
liveans May 31, 2024
0e2c152
Add RemoteExecutor.DisposeAsync and use it on System.Net.Requests - 2
liveans May 31, 2024
13045c9
Add RemoteExecutor.DisposeAsync and use it on System.Net.Security - 2
liveans May 31, 2024
5c5bb53
Add RemoteExecutor.DisposeAsync and use it on System.Net.Sockets - 2
liveans May 31, 2024
3ede1e0
Add RemoteExecutor.DisposeAsync and use it on Common System.Net - 2
liveans May 31, 2024
6bd462f
Merge branch 'main' into attempt_to_fix_an_http3_test
liveans May 31, 2024
dbd5b01
Review Feedback
liveans May 31, 2024
896f0f1
Change DisposeAsync return value signature to ValueTask from Task
liveans Jun 2, 2024
6c01d86
Reapply "Disable parallel test execution for QUIC and HTTP/3 (#101569)"
liveans Jun 3, 2024
4574aa9
Put ActiveIssue's back
liveans Jun 3, 2024
fcb6d45
Delete ActiveIssue to make disable it in other pr with other changes
liveans Jun 3, 2024
e19b233
Add SkipTest back
liveans Jun 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Review Feedback
liveans committed May 31, 2024
commit dbd5b018c64376b73d7c23f727c658ebfffe1655
Original file line number Diff line number Diff line change
@@ -336,7 +336,7 @@ public async Task DuplicateAndClose_TcpServerHandler(AddressFamily addressFamily

async Task RunCommonHostLogic(int processId)
{
await Task.Yield();
await Task.CompletedTask.ConfigureAwait(ConfigureAwaitOptions.ForceYielding);

pipeServerStream.WaitForConnection();