From 1444e771068b5abdd9322a4647182ac92d8ccbbc Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Thu, 11 Oct 2018 21:13:35 +0200 Subject: [PATCH] Avoid global $wgUpdateRowsPerQuery in WatchedItemStore Change-Id: Ibff69d16919a595c3edb8e2b431aa42d84a2777a --- includes/watcheditem/WatchedItemStore.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/watcheditem/WatchedItemStore.php b/includes/watcheditem/WatchedItemStore.php index b18db7626c..c76301046c 100644 --- a/includes/watcheditem/WatchedItemStore.php +++ b/includes/watcheditem/WatchedItemStore.php @@ -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 */ -- 2.20.1