X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FmoveBatch.php;h=9c20c67ded3c8dbc292d1358a0c567fbceb66780;hb=5cff7d007a92480dcea7c5fcba726cf23054d7b7;hp=090c3d41d080cc2be1c8f279cdc675ab47e19d85;hpb=2b6f3f0adc475da7eab1ef04dfe917e5536e6e10;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(); } } }