Page MenuHomePhabricator

D10441.diff
No OneTemporary

D10441.diff

diff --git a/scripts/repository/reparse.php b/scripts/repository/reparse.php
--- a/scripts/repository/reparse.php
+++ b/scripts/repository/reparse.php
@@ -218,6 +218,9 @@
echo "QUEUEING TASKS (".number_format(count($commits))." Commits):\n";
}
+$progress = new PhutilConsoleProgressBar();
+$progress->setTotal(count($commits));
+
$tasks = array();
foreach ($commits as $commit) {
$classes = array();
@@ -271,20 +274,18 @@
$class,
$spec,
PhabricatorWorker::PRIORITY_IMPORT);
-
- $commit_name = 'r'.$callsign.$commit->getCommitIdentifier();
- echo " Queued '{$class}' for commit '{$commit_name}'.\n";
}
} else {
foreach ($classes as $class) {
$worker = newv($class, array($spec));
- echo "Running '{$class}'...\n";
$worker->executeTask();
}
}
+
+ $progress->update(1);
}
-echo "\nDone.\n";
+$progress->done();
function usage($message) {
echo phutil_console_format(

File Metadata

Mime Type
text/plain
Expires
Mon, Mar 31, 8:15 PM (3 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7714438
Default Alt Text
D10441.diff (963 B)

Event Timeline