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.
This commit is contained in:
Stephen Halter 2015-09-29 11:07:06 -07:00
parent 5698b61d34
commit f3b5bc2483
1 changed files with 0 additions and 4 deletions

View File

@ -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);