Continued:
- system,worker_dont_fork may not be set, always set default to "false" to have it properly set as Config::get() may one day behave differently Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
94a02f8572
commit
fe1e7b92f2
|
@ -688,7 +688,7 @@ class Worker
|
|||
logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries.$processlist." - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG);
|
||||
|
||||
// Are there fewer workers running as possible? Then fork a new one.
|
||||
if (!Config::get("system", "worker_dont_fork") && ($queues > ($active + 1)) && ($entries > 1)) {
|
||||
if (!Config::get("system", "worker_dont_fork", false) && ($queues > ($active + 1)) && ($entries > 1)) {
|
||||
logger("Active workers: ".$active."/".$queues." Fork a new worker.", LOGGER_DEBUG);
|
||||
self::spawnWorker();
|
||||
}
|
||||
|
@ -1039,7 +1039,7 @@ class Worker
|
|||
}
|
||||
|
||||
$priority = PRIORITY_MEDIUM;
|
||||
$dont_fork = Config::get("system", "worker_dont_fork");
|
||||
$dont_fork = Config::get("system", "worker_dont_fork", false);
|
||||
$created = DateTimeFormat::utcNow();
|
||||
|
||||
$run_parameter = array_shift($args);
|
||||
|
|
Loading…
Reference in New Issue
Block a user