Changed timer interval to 1 second.

This commit is contained in:
Sunny Ahuwanya 2015-12-01 09:29:54 -05:00
parent 67a0f2d420
commit 6251b8f3e6
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
: this(
systemClock: new SystemClock(),
timeWithoutRequestsUntilIdle: TimeSpan.FromSeconds(10),
timerInterval: TimeSpan.FromMilliseconds(200))
timerInterval: TimeSpan.FromSeconds(1))
{
}