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()