Remove rogue ConfigureAwait (#1830)

- We don't do it anywhere else, I assume this is left over
from older legacy
This commit is contained in:
David Fowler 2017-05-12 18:26:52 -07:00 committed by GitHub
parent cb1d0f3956
commit 1a706113d9
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http
{
KestrelEventSource.Log.RequestStart(this);
await _application.ProcessRequestAsync(context).ConfigureAwait(false);
await _application.ProcessRequestAsync(context);
if (Volatile.Read(ref _requestAborted) == 0)
{