X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FmoveBatch.php;h=9c20c67ded3c8dbc292d1358a0c567fbceb66780;hb=cc329a5b06c0658cc2d1050bb05c38ce651b30f3;hp=090c3d41d080cc2be1c8f279cdc675ab47e19d85;hpb=11ee7f78da9776db26098642a151a288f98bea14;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(); } } }