Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15457952
D10441.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
963 B
Referenced Files
None
Subscribers
None
D10441.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D10441: Use `PhutilConsoleProgressBar` for the `repository/reparse.php` script
Attached
Detach File
Event Timeline
Log In to Comment