We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51eb7fa commit 27d2d01Copy full SHA for 27d2d01
dotnet/test/common/Environment/TestWebServer.cs
@@ -181,8 +181,8 @@ public async Task StopAsync()
181
{
182
using (var httpClient = new HttpClient())
183
184
- var quitTask = httpClient.GetAsync(EnvironmentManager.Instance.UrlBuilder.LocalWhereIs("quitquitquit"));
185
- await ((Task)quitTask).ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);
+ await ((Task)httpClient.GetAsync(EnvironmentManager.Instance.UrlBuilder.LocalWhereIs("quitquitquit")))
+ .ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);
186
}
187
188
try
0 commit comments