X-Git-Url: https://git.cyclocoop.org/%28%28?a=blobdiff_plain;f=includes%2Fjobqueue%2Fjobs%2FClearUserWatchlistJob.php;h=77adfa1a9435a38a310c67e9474584e2f0b9f4e5;hb=631c7f09c53017da49a1e0f99d52fd2c4cf95641;hp=3e8b2ad3e4506bc3396aeefda6b121b45a837cc6;hpb=bc6ed2ba24a8691ad6d6cc321a43720bcfb770e2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/jobqueue/jobs/ClearUserWatchlistJob.php b/includes/jobqueue/jobs/ClearUserWatchlistJob.php index 3e8b2ad3e4..77adfa1a94 100644 --- a/includes/jobqueue/jobs/ClearUserWatchlistJob.php +++ b/includes/jobqueue/jobs/ClearUserWatchlistJob.php @@ -53,7 +53,7 @@ class ClearUserWatchlistJob extends Job { // Wait before lock to try to reduce time waiting in the lock. if ( !$loadBalancer->safeWaitForMasterPos( $dbr ) ) { - $this->setLastError( 'Timed out while waiting for slave to catch up before lock' ); + $this->setLastError( 'Timed out waiting for replica to catch up before lock' ); return false; } @@ -66,7 +66,7 @@ class ClearUserWatchlistJob extends Job { } if ( !$loadBalancer->safeWaitForMasterPos( $dbr ) ) { - $this->setLastError( 'Timed out while waiting for slave to catch up within lock' ); + $this->setLastError( 'Timed out waiting for replica to catch up within lock' ); return false; }