From ed41575706131eae4aa2a7d1a72e0147db5613da Mon Sep 17 00:00:00 2001 From: Damian Edwards Date: Fri, 24 Jan 2025 11:45:49 -0800 Subject: [PATCH] Remove sync I/O config Not sure why this is enabled --- src/BenchmarksApps/TechEmpower/Minimal/Program.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/BenchmarksApps/TechEmpower/Minimal/Program.cs b/src/BenchmarksApps/TechEmpower/Minimal/Program.cs index 9fce631a8..79aa06efb 100644 --- a/src/BenchmarksApps/TechEmpower/Minimal/Program.cs +++ b/src/BenchmarksApps/TechEmpower/Minimal/Program.cs @@ -11,11 +11,6 @@ // Disable logging as this is not required for the benchmark builder.Logging.ClearProviders(); -builder.WebHost.ConfigureKestrel(options => -{ - options.AllowSynchronousIO = true; -}); - // Load custom configuration var appSettings = new AppSettings(); builder.Configuration.Bind(appSettings);