mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix an issue where followup tasks could fail to queue with string priorities
Auditors: chad
This commit is contained in:
parent
a5c4177160
commit
55767aac0f
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ final class PhabricatorWorkerActiveTask extends PhabricatorWorkerTask {
|
|||
$class,
|
||||
$data,
|
||||
array(
|
||||
'priority' => $this->getPriority(),
|
||||
'priority' => (int)$this->getPriority(),
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue