From eb5a3cafd699d114d9eeefc99f8bb9f6d57d9703 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Mon, 20 Feb 2017 11:20:22 -0800 Subject: [PATCH] Remove old workaround --- src/Podsync/Program.cs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/Podsync/Program.cs b/src/Podsync/Program.cs index 79437c0..d9b3cb5 100644 --- a/src/Podsync/Program.cs +++ b/src/Podsync/Program.cs @@ -8,15 +8,7 @@ namespace Podsync public static void Main(string[] args) { var host = new WebHostBuilder() - .UseKestrel(options => - { - options.AddServerHeader = false; - - // Temporary workaround for Error -4047 EPIPE broken pipe - // Remove this after upgrade to 1.1.0 - // See https://github.com/aspnet/KestrelHttpServer/issues/1182 - options.ThreadCount = 1; - }) + .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) .UseIISIntegration() .UseStartup()