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:
parent
cb1d0f3956
commit
1a706113d9
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue