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:
parent
5698b61d34
commit
f3b5bc2483
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue