mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
e10fdbe77e
Summary: Patches often read from slaves (possibly stale data) and use that information to write on master. It causes problems when applying more patches quickly after each other because data created in previous patch may not be replicated yet. Test Plan: $ bin/storage upgrade Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4483
18 lines
358 B
PHP
18 lines
358 B
PHP
<?php
|
|
|
|
echo "Indexing username tokens for typeaheads...\n";
|
|
|
|
$table = new PhabricatorUser();
|
|
$table->openTransaction();
|
|
$table->beginReadLocking();
|
|
|
|
$users = $table->loadAll();
|
|
echo count($users)." users to index";
|
|
foreach ($users as $user) {
|
|
$user->updateNameTokens();
|
|
echo ".";
|
|
}
|
|
|
|
$table->endReadLocking();
|
|
$table->saveTransaction();
|
|
echo "\nDone.\n";
|