Use DB_REPLICA in ContribsPager
authorAaron Schulz <aschulz@wikimedia.org>
Sun, 11 Sep 2016 13:36:51 +0000 (06:36 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Sun, 11 Sep 2016 13:36:51 +0000 (06:36 -0700)
Change-Id: Ic225b9c41d989722677caf323846783d7e0638a4

includes/specials/pagers/ContribsPager.php

index bc0ebc2..a145e45 100644 (file)
@@ -73,7 +73,7 @@ class ContribsPager extends ReverseChronologicalPager {
                // Most of this code will use the 'contributions' group DB, which can map to replica DBs
                // with extra user based indexes or partioning by user. The additional metadata
                // queries should use a regular replica DB since the lookup pattern is not all by user.
-               $this->mDbSecondary = wfGetDB( DB_SLAVE ); // any random replica DB
+               $this->mDbSecondary = wfGetDB( DB_REPLICA ); // any random replica DB
                $this->mDb = wfGetDB( DB_REPLICA, 'contributions' );
        }