Remove old workaround

This commit is contained in:
Maksym Pavlenko
2017-02-20 11:20:22 -08:00
parent 28c1d2c462
commit eb5a3cafd6
+1 -9
View File
@@ -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<Startup>()