From: Platonides Date: Wed, 12 Jan 2011 23:07:20 +0000 (+0000) Subject: Follow up r47852. Unlike forkWorkers(), the start() method doesn't get the $procs... X-Git-Tag: 1.31.0-rc.0~32583 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=14961240be0dbc9faa0c9c2b37575efa84c8c60d;p=lhc%2Fweb%2Fwiklou.git Follow up r47852. Unlike forkWorkers(), the start() method doesn't get the $procs parameter. --- diff --git a/maintenance/runJobs.php b/maintenance/runJobs.php index d6d2538caf..d4916c315c 100644 --- a/maintenance/runJobs.php +++ b/maintenance/runJobs.php @@ -49,7 +49,7 @@ class RunJobs extends Maintenance { $this->error( "Invalid argument to --procs", true ); } $fc = new ForkController( $procs ); - if ( $fc->start( $procs ) != 'child' ) { + if ( $fc->start() != 'child' ) { $this->unlock(); exit( 0 ); }