1
0
Fork 0
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:
epriestley 2015-09-28 19:46:41 -07:00
parent a5c4177160
commit 55767aac0f

View file

@ -214,7 +214,7 @@ final class PhabricatorWorkerActiveTask extends PhabricatorWorkerTask {
$class,
$data,
array(
'priority' => $this->getPriority(),
'priority' => (int)$this->getPriority(),
));
}
}