Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15289434
D20588.id49106.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D20588.id49106.diff
View Options
diff --git a/src/applications/repository/management/PhabricatorRepositoryManagementReparseWorkflow.php b/src/applications/repository/management/PhabricatorRepositoryManagementReparseWorkflow.php
--- a/src/applications/repository/management/PhabricatorRepositoryManagementReparseWorkflow.php
+++ b/src/applications/repository/management/PhabricatorRepositoryManagementReparseWorkflow.php
@@ -252,12 +252,24 @@
);
foreach ($classes as $class) {
- PhabricatorWorker::scheduleTask(
- $class,
- $spec,
- array(
- 'priority' => PhabricatorWorker::PRIORITY_IMPORT,
- ));
+ try {
+ PhabricatorWorker::scheduleTask(
+ $class,
+ $spec,
+ array(
+ 'priority' => PhabricatorWorker::PRIORITY_IMPORT,
+ ));
+ } catch (PhabricatorWorkerPermanentFailureException $ex) {
+ // See T13315. We expect some reparse steps to occasionally raise
+ // permanent failures: for example, because they are no longer
+ // reachable. This is a routine condition, not a catastrophic
+ // failure, so let the user know something happened but continue
+ // reparsing any remaining commits.
+ echo tsprintf(
+ "<bg:yellow>** %s **</bg> %s\n",
+ pht('WARN'),
+ $ex->getMessage());
+ }
}
$progress->update(1);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mar 5 2025, 9:52 PM (4 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7223089
Default Alt Text
D20588.id49106.diff (1 KB)
Attached To
Mode
D20588: In "bin/repository reparse", continue on "PhabricatorWorkerPermanentFailureException"
Attached
Detach File
Event Timeline
Log In to Comment