From 1a706113d9f75999d9642ccc05b41593f7c0aa50 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Fri, 12 May 2017 18:26:52 -0700 Subject: [PATCH] Remove rogue ConfigureAwait (#1830) - We don't do it anywhere else, I assume this is left over from older legacy --- .../Internal/Http/FrameOfT.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {