diff options
author | Aaron Schulz <aschulz@wikimedia.org> | 2019-06-19 17:28:09 +0100 |
---|---|---|
committer | Krinkle <krinklemail@gmail.com> | 2019-06-22 14:56:35 +0000 |
commit | 6718d18339ca04a4832293ae95bce49ddcd4c6bf (patch) | |
tree | b86be23ec14a690aa16d2bd039a42b5997adcdd9 /includes/deferred | |
parent | 929e44c04cf9f2e6da8bb15bcc4edc3c06a7fa94 (diff) | |
download | mediawikicore-6718d18339ca04a4832293ae95bce49ddcd4c6bf.tar.gz mediawikicore-6718d18339ca04a4832293ae95bce49ddcd4c6bf.zip |
rdbms: rename safeWaitForMasterPos() to waitForMasterPos() in ILoadBalancer
Change-Id: I2ad0c6f369ba992895a5306a57f1af16a772844c
Diffstat (limited to 'includes/deferred')
-rw-r--r-- | includes/deferred/UserEditCountUpdate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/deferred/UserEditCountUpdate.php b/includes/deferred/UserEditCountUpdate.php index 4ce0b18ec651..e9ebabb64369 100644 --- a/includes/deferred/UserEditCountUpdate.php +++ b/includes/deferred/UserEditCountUpdate.php @@ -89,7 +89,7 @@ class UserEditCountUpdate implements DeferrableUpdate, MergeableUpdate { // This method runs after the new revisions were committed. // Wait for the replica to catch up so they will all be counted. $dbr->flushSnapshot( $fname ); - $lb->safeWaitForMasterPos( $dbr ); + $lb->waitForMasterPos( $dbr ); } $affectedInstances[0]->initEditCountInternal(); } |