From: Antoine Musso Date: Wed, 30 May 2012 14:51:12 +0000 (+0200) Subject: wrong class name: JobQueue -> Job X-Git-Tag: 1.31.0-rc.0~23462 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=9780085753d33f0c88600f0b7bbb6626fd97c89d;p=lhc%2Fweb%2Fwiklou.git wrong class name: JobQueue -> Job Commit fb69ee48 used a wrong class name JobQueue instead of Job Was https://gerrit.wikimedia.org/r/#/c/9116/ Change-Id: Ibe3e146e021a95376d2c57d0366645d8f5370431 --- diff --git a/maintenance/nextJobDB.php b/maintenance/nextJobDB.php index d9bd3b8880..ac4e723b5d 100644 --- a/maintenance/nextJobDB.php +++ b/maintenance/nextJobDB.php @@ -94,7 +94,7 @@ class nextJobDB extends Maintenance { $lb = wfGetLB( $dbName ); $db = $lb->getConnection( DB_MASTER, array(), $dbName ); if ( $type === false ) { - $conds = JobQueue::defaultQueueConditions( ); + $conds = Job::defaultQueueConditions( ); } else { $conds = array( 'job_cmd' => $type ); }