diff --git a/src/Microsoft.AspNet.Server.Kestrel/ServerFactory.cs b/src/Microsoft.AspNet.Server.Kestrel/ServerFactory.cs index 256b70c248..9f7ad6789b 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/ServerFactory.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/ServerFactory.cs @@ -55,7 +55,7 @@ namespace Microsoft.AspNet.Server.Kestrel disposables.Push(engine); - engine.Start(information.ThreadCount == 0 ? 1 : information.ThreadCount); + engine.Start(information.ThreadCount <= 0 ? 1 : information.ThreadCount); foreach (var address in information.Addresses) {