mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
Removed worker config stuff
This commit is contained in:
parent
733caa5669
commit
46308fa1ef
1 changed files with 9 additions and 10 deletions
19
boot.php
19
boot.php
|
@ -1386,17 +1386,15 @@ class App {
|
||||||
|
|
||||||
// If the last worker fork was less than 10 seconds before then don't fork another one.
|
// If the last worker fork was less than 10 seconds before then don't fork another one.
|
||||||
// This should prevent the forking of masses of workers.
|
// This should prevent the forking of masses of workers.
|
||||||
if (get_config("system", "worker")) {
|
$cachekey = "app:proc_run:started";
|
||||||
$cachekey = "app:proc_run:started";
|
$result = Cache::get($cachekey);
|
||||||
$result = Cache::get($cachekey);
|
if (!is_null($result)) {
|
||||||
if (!is_null($result)) {
|
if ((time() - $result) < 10) {
|
||||||
if ((time() - $result) < 10) {
|
return;
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// Set the timestamp of the last proc_run
|
|
||||||
Cache::set($cachekey, time(), CACHE_MINUTE);
|
|
||||||
}
|
}
|
||||||
|
// Set the timestamp of the last proc_run
|
||||||
|
Cache::set($cachekey, time(), CACHE_MINUTE);
|
||||||
|
|
||||||
$args[0] = ((x($this->config,'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php');
|
$args[0] = ((x($this->config,'php_path')) && (strlen($this->config['php_path'])) ? $this->config['php_path'] : 'php');
|
||||||
}
|
}
|
||||||
|
@ -2000,7 +1998,8 @@ function proc_run($cmd){
|
||||||
if (!$arr['run_cmd'] OR !count($args))
|
if (!$arr['run_cmd'] OR !count($args))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!get_config("system", "worker") OR (is_string($run_parameter) AND ($run_parameter != 'php'))) {
|
/// @todo I guess we can remove it, since we don't call it with something different
|
||||||
|
if (is_string($run_parameter) AND ($run_parameter != 'php')) {
|
||||||
$a->proc_run($args);
|
$a->proc_run($args);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue