1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-03 19:31:02 +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, $class,
$data, $data,
array( array(
'priority' => $this->getPriority(), 'priority' => (int)$this->getPriority(),
)); ));
} }
} }