@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.

Recover from repositories becoming unpullable

Test Plan: If a repository's tracking flag is toggled while it's in queue, we may loop indefinitely.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

authored by

Arturas Moskvinas and committed by
epriestley
5f797b4d 00136f05

+2 -1
+2 -1
src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php
··· 150 150 if (!$repository) { 151 151 $this->log( 152 152 pht('Repository %s is no longer pullable; skipping.', $id)); 153 - break; 153 + unset($queue[$id]); 154 + continue; 154 155 } 155 156 156 157 $monogram = $repository->getMonogram();