X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FmoveBatch.php;h=9c20c67ded3c8dbc292d1358a0c567fbceb66780;hb=43a0144346da4e6edbbadee0b7d9def53357bc10;hp=090c3d41d080cc2be1c8f279cdc675ab47e19d85;hpb=095a2a05b2aaccff26d7b871194a4edccd092707;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/moveBatch.php b/maintenance/moveBatch.php index 090c3d41d0..9c20c67ded 100644 --- a/maintenance/moveBatch.php +++ b/maintenance/moveBatch.php @@ -86,7 +86,6 @@ class MoveBatch extends Maintenance { # Setup complete, now start $dbw = $this->getDB( DB_MASTER ); - // phpcs:ignore Generic.CodeAnalysis.ForLoopWithTestFunctionCall for ( $linenum = 1; !feof( $file ); $linenum++ ) { $line = fgets( $file ); if ( $line === false ) { @@ -117,7 +116,6 @@ class MoveBatch extends Maintenance { if ( $interval ) { sleep( $interval ); } - wfWaitForSlaves(); } } }