closed internal TODO, merged 2 if() to one + added spaces
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
11d3fd163a
commit
843b7a003c
8
boot.php
8
boot.php
|
@ -1349,12 +1349,11 @@ class App {
|
|||
// This should prevent the forking of masses of workers.
|
||||
$cachekey = "app:proc_run:started";
|
||||
$result = Cache::get($cachekey);
|
||||
/// @TODO maybe merge these both into one if() ?
|
||||
if (!is_null($result)) {
|
||||
if ((time() - $result) < 10) {
|
||||
|
||||
if (!is_null($result) AND (time() - $result) < 10) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Set the timestamp of the last proc_run
|
||||
Cache::set($cachekey, time(), CACHE_MINUTE);
|
||||
|
||||
|
@ -1363,6 +1362,7 @@ class App {
|
|||
// add baseurl to args. cli scripts can't construct it
|
||||
$args[] = $this->get_baseurl();
|
||||
|
||||
/// @TODO let's replace these with a foreach($key => $value) loop
|
||||
for ($x = 0; $x < count($args); $x ++) {
|
||||
$args[$x] = escapeshellarg($args[$x]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue