Index: trunk/phase3/includes/JobQueue.php |
— | — | @@ -126,7 +126,6 @@ |
127 | 127 | if ( !$affected ) { |
128 | 128 | // Failed, someone else beat us to it |
129 | 129 | // Try getting a random row |
130 | | - // FIXME: FIFO??? |
131 | 130 | $row = $dbw->selectRow( 'job', array( 'MIN(job_id) as minjob', |
132 | 131 | 'MAX(job_id) as maxjob' ), '1=1', __METHOD__ ); |
133 | 132 | if ( $row === false || is_null( $row->minjob ) || is_null( $row->maxjob ) ) { |