diff options
author | Platonides <platonides@users.mediawiki.org> | 2011-04-20 00:12:06 +0000 |
---|---|---|
committer | Platonides <platonides@users.mediawiki.org> | 2011-04-20 00:12:06 +0000 |
commit | 62053ac8fda5b00457bb3ad1891eac2316cf707d (patch) | |
tree | c9be402d0d9dec365da742c2143f49796dd78729 /maintenance/initEditCount.php | |
parent | fb0df526c2c1499e607af82c0173b622afa3e915 (diff) | |
download | mediawikicore-62053ac8fda5b00457bb3ad1891eac2316cf707d.tar.gz mediawikicore-62053ac8fda5b00457bb3ad1891eac2316cf707d.zip |
Merge r86398 into the old wfWaitForSlaves. Update core calls.
maintenance/waitForSlave.php still calls the old prototype.
Most instances were replaced with
sed -i 's/wfWaitForSlaves( [0-9]* );/wfWaitForSlaves();/' ./maintenance/initEditCount.php ./maintenance/updateRestrictions.php ./maintenance/updateSpecialPages.php ./maintenance/importDump.php ./maintenance/moveBatch.php ./maintenance/storage/resolveStubs.php ./maintenance/storage/trackBlobs.php ./maintenance/storage/fixBug20757.php ./maintenance/storage/moveToExternal.php ./maintenance/storage/compressOld.inc ./maintenance/populateSha1.php ./maintenance/deleteDefaultMessages.php ./maintenance/migrateUserGroup.php ./maintenance/importImages.php ./maintenance/runJobs.php ./maintenance/archives/upgradeLogging.php ./maintenance/deleteBatch.php ./maintenance/populateLogSearch.php ./maintenance/populateLogUsertext.php ./maintenance/gearman/gearmanWorker.php ./maintenance/populateRevisionLength.php ./maintenance/refreshLinks.php ./maintenance/deleteSelfExternals.php ./maintenance/upgrade1_5.php ./maintenance/rebuildFileCache.php ./includes/job/RefreshLinksJob.php ./includes/installer/MysqlUpdater.php ./maintenance/convertUserOptions.php ./maintenance/populateParentId.php ./maintenance/runBatchedQuery.php ./maintenance/upgrade1_5.php ./maintenance/waitForSlave.php ./maintenance/populateCategory.php ./maintenance/importImages.php
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/86447
Diffstat (limited to 'maintenance/initEditCount.php')
-rw-r--r-- | maintenance/initEditCount.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/initEditCount.php b/maintenance/initEditCount.php index e421e29bf8ea..0f136450fe81 100644 --- a/maintenance/initEditCount.php +++ b/maintenance/initEditCount.php @@ -93,7 +93,7 @@ in the load balancer, usually indicating a replication environment.' ); $delta, $rate ) ); - wfWaitForSlaves( 10 ); + wfWaitForSlaves(); } } else { // Subselect should work on modern MySQLs etc |