@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Correctly pass worker priority from reparse script

Summary: D11044 broke the `./scripts/repository/reparse.php` script.

Test Plan: `./scripts/repository/reparse.php --message --all X`

Reviewers: btrahan, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11211

+3 -1
+3 -1
scripts/repository/reparse.php
··· 273 273 PhabricatorWorker::scheduleTask( 274 274 $class, 275 275 $spec, 276 - PhabricatorWorker::PRIORITY_IMPORT); 276 + array( 277 + 'priority' => PhabricatorWorker::PRIORITY_IMPORT, 278 + )); 277 279 } 278 280 } else { 279 281 foreach ($classes as $class) {