From f3b5bc2483ba152840fe99029ea4d61c339506c5 Mon Sep 17 00:00:00 2001 From: Stephen Halter Date: Tue, 29 Sep 2015 11:07:06 -0700 Subject: [PATCH] Don't set ThreadCount in sample project since it is temporarily broken - We should be able to add this back once https://github.com/libuv/libuv/pull/540 gets merged. --- samples/SampleApp/Startup.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/samples/SampleApp/Startup.cs b/samples/SampleApp/Startup.cs index f41201db16..f74fffe57e 100644 --- a/samples/SampleApp/Startup.cs +++ b/samples/SampleApp/Startup.cs @@ -5,7 +5,6 @@ using System; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; using Microsoft.Framework.Logging; -using Microsoft.AspNet.Server.Kestrel; namespace SampleApp { @@ -13,9 +12,6 @@ namespace SampleApp { public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) { - var ksi = app.ServerFeatures[typeof(IKestrelServerInformation)] as IKestrelServerInformation; - ksi.ThreadCount = 4; - loggerFactory.MinimumLevel = LogLevel.Debug; loggerFactory.AddConsole(LogLevel.Debug);