From 4ed0a15cd03947390f2ffac91f230d9067e23b13 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 5 Jul 2017 22:53:29 +0300 Subject: [PATCH] By default a number of router worker threads is set to a number of CPUs. --- src/nxt_router.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nxt_router.c b/src/nxt_router.c index 6e9bb994..c1a33994 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -305,6 +305,10 @@ nxt_router_conf_create(nxt_task_t *task, nxt_router_temp_conf_t *tmcf, return NXT_ERROR; } + if (tmcf->conf->threads == 0) { + tmcf->conf->threads = nxt_ncpu; + } + http = nxt_conf_get_path(conf, &http_path); if (http == NULL) {