X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FpopulateFilearchiveSha1.php;h=7557a42ff4344b4ccc2509a33cdc276ebbc6beb2;hb=e7720b8f8e09287384ddee271641d1b1721318bb;hp=24c25b179f64a8320e7228becfecd0490fb0733b;hpb=e57998f5330e8a0c9636c9075ae5fb8e3b72f913;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/populateFilearchiveSha1.php b/maintenance/populateFilearchiveSha1.php index 24c25b179f..7557a42ff4 100644 --- a/maintenance/populateFilearchiveSha1.php +++ b/maintenance/populateFilearchiveSha1.php @@ -47,7 +47,7 @@ class PopulateFilearchiveSha1 extends LoggedUpdateMaintenance { $startTime = microtime( true ); $dbw = $this->getDB( DB_MASTER ); $table = 'filearchive'; - $conds = array( 'fa_sha1' => '', 'fa_storage_key IS NOT NULL' ); + $conds = [ 'fa_sha1' => '', 'fa_storage_key IS NOT NULL' ]; if ( !$dbw->fieldExists( $table, 'fa_sha1', __METHOD__ ) ) { $this->output( "fa_sha1 column does not exist\n\n", true ); @@ -64,10 +64,10 @@ class PopulateFilearchiveSha1 extends LoggedUpdateMaintenance { do { $res = $dbw->select( $table, - array( 'fa_id', 'fa_storage_key' ), + [ 'fa_id', 'fa_storage_key' ], $conds, __METHOD__, - array( 'LIMIT' => $batchSize ) + [ 'LIMIT' => $batchSize ] ); $i = 0; @@ -78,8 +78,8 @@ class PopulateFilearchiveSha1 extends LoggedUpdateMaintenance { } $sha1 = LocalRepo::getHashFromKey( $row->fa_storage_key ); $dbw->update( $table, - array( 'fa_sha1' => $sha1 ), - array( 'fa_id' => $row->fa_id ), + [ 'fa_sha1' => $sha1 ], + [ 'fa_id' => $row->fa_id ], __METHOD__ ); $lastId = $row->fa_id; @@ -91,7 +91,7 @@ class PopulateFilearchiveSha1 extends LoggedUpdateMaintenance { break; } - // print status and let slaves catch up + // print status and let replica DBs catch up $this->output( sprintf( "id %d done (up to %d), %5.3f%% \r", $lastId, $endId, $lastId / $endId * 100 ) ); wfWaitForSlaves();