ConfigureAwait(false)

This commit is contained in:
Ben Adams 2015-07-19 15:50:42 +01:00
parent e69f63e494
commit 23ffc3fea9
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
Exception error = null;
try
{
await Application.Invoke(this);
await Application.Invoke(this).ConfigureAwait(false);
}
catch (Exception ex)
{