diff --git a/src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/FrameOfT.cs b/src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/FrameOfT.cs index b0890e17ae..c8ea98003f 100644 --- a/src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/FrameOfT.cs +++ b/src/Microsoft.AspNetCore.Server.Kestrel.Core/Internal/Http/FrameOfT.cs @@ -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) {