Increase frequency of idle_check.

This commit is contained in:
Joris Vink 2014-10-13 16:34:42 +02:00
parent b668125ff7
commit 5855a88862
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ kore_worker_entry(struct kore_worker *kw)
http_process();
now = kore_time_ms();
if ((now - idle_check) >= 10000) {
if ((now - idle_check) >= 1000) {
idle_check = now;
TAILQ_FOREACH(c, &worker_clients, list) {
if (c->proto == CONN_PROTO_SPDY &&