X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fjobqueue%2FJobQueueDB.php;h=d981d13a40fb9bf06478e41dfc65b214febaf66d;hb=16266edff3337c893a1b5bc42e0bd006a828cde3;hp=3a1da13645e178d09f33b164171b166afb3027db;hpb=f3cfdf0baa036a4b3375857cc74344ec09f6ac6f;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/jobqueue/JobQueueDB.php b/includes/jobqueue/JobQueueDB.php index 3a1da13645..d981d13a40 100644 --- a/includes/jobqueue/JobQueueDB.php +++ b/includes/jobqueue/JobQueueDB.php @@ -236,7 +236,7 @@ class JobQueueDB extends JobQueue { } // Build the full list of job rows to insert $rows = array_merge( $rowList, array_values( $rowSet ) ); - // Insert the job rows in chunks to avoid slave lag... + // Insert the job rows in chunks to avoid replica DB lag... foreach ( array_chunk( $rows, 50 ) as $rowBatch ) { $dbw->insert( 'job', $rowBatch, $method ); }