From 14961240be0dbc9faa0c9c2b37575efa84c8c60d Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 12 Jan 2011 23:07:20 +0000 Subject: [PATCH] Follow up r47852. Unlike forkWorkers(), the start() method doesn't get the $procs parameter. --- maintenance/runJobs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1