Avoid global $wgUpdateRowsPerQuery in WatchedItemStore
Change-Id: Ibff69d16919a595c3edb8e2b431aa42d84a2777a
This commit is contained in:
parent
98c37e1549
commit
1444e77106
1 changed files with 1 additions and 3 deletions
|
|
@ -825,12 +825,10 @@ class WatchedItemStore implements WatchedItemStoreInterface, StatsdAwareInterfac
|
|||
$fname = __METHOD__;
|
||||
DeferredUpdates::addCallableUpdate(
|
||||
function () use ( $timestamp, $watchers, $target, $fname ) {
|
||||
global $wgUpdateRowsPerQuery;
|
||||
|
||||
$dbw = $this->getConnectionRef( DB_MASTER );
|
||||
$ticket = $this->lbFactory->getEmptyTransactionTicket( $fname );
|
||||
|
||||
$watchersChunks = array_chunk( $watchers, $wgUpdateRowsPerQuery );
|
||||
$watchersChunks = array_chunk( $watchers, $this->updateRowsPerQuery );
|
||||
foreach ( $watchersChunks as $watchersChunk ) {
|
||||
$dbw->update( 'watchlist',
|
||||
[ /* SET */
|
||||
|
|
|
|||
Loading…
Reference in a new issue