Bugfix: The provided worker priority had been ignored
This commit is contained in:
@@ -1018,6 +1018,8 @@ class Worker
|
||||
$dont_fork = Config::get("system", "worker_dont_fork");
|
||||
$created = DateTimeFormat::utcNow();
|
||||
|
||||
$run_parameter = array_shift($args);
|
||||
|
||||
if (is_int($run_parameter)) {
|
||||
$priority = $run_parameter;
|
||||
} elseif (is_array($run_parameter)) {
|
||||
@@ -1032,8 +1034,6 @@ class Worker
|
||||
}
|
||||
}
|
||||
|
||||
array_shift($args);
|
||||
|
||||
$parameters = json_encode($args);
|
||||
$found = dba::exists('workerqueue', ['parameter' => $parameters, 'done' => false]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user