X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrebuildFileCache.php;h=19d8d061546436d29db65ccaf46f92c6ad4a81dd;hb=716814a5d501efcc99b09fbb7e26caaf9a395d26;hp=fe3944c8764dce534ba854c8aede865800e3b996;hpb=50075483570e5106b3e8a2b3f469c8fe5254a1cf;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/rebuildFileCache.php b/maintenance/rebuildFileCache.php index fe3944c876..19d8d06154 100644 --- a/maintenance/rebuildFileCache.php +++ b/maintenance/rebuildFileCache.php @@ -78,6 +78,7 @@ class RebuildFileCache extends Maintenance { $this->output( "Building content page file cache from page {$start}!\n" ); $dbr = $this->getDB( DB_REPLICA ); + $batchSize = $this->getBatchSize(); $overwrite = $this->hasOption( 'overwrite' ); $start = ( $start > 0 ) ? $start @@ -92,9 +93,9 @@ class RebuildFileCache extends Maintenance { $_SERVER['HTTP_ACCEPT_ENCODING'] = 'bgzip'; // hack, no real client # Do remaining chunk - $end += $this->mBatchSize - 1; + $end += $batchSize - 1; $blockStart = $start; - $blockEnd = $start + $this->mBatchSize - 1; + $blockEnd = $start + $batchSize - 1; $dbw = $this->getDB( DB_MASTER ); // Go through each page and save the output @@ -171,8 +172,8 @@ class RebuildFileCache extends Maintenance { } $this->commitTransaction( $dbw, __METHOD__ ); // commit any changes (just for sanity) - $blockStart += $this->mBatchSize; - $blockEnd += $this->mBatchSize; + $blockStart += $batchSize; + $blockEnd += $batchSize; } $this->output( "Done!\n" ); }