diff options
-rw-r--r-- | src/nxt_router.c | 4 |
1 files changed, 4 insertions, 0 deletions
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) { |