Merge "Don't fallback from uk to ru"
[lhc/web/wiklou.git] / maintenance / populateFilearchiveSha1.php
index 24c25b1..7557a42 100644 (file)
@@ -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();