Index: trunk/phase3/includes/db/Database.php |
— | — | @@ -2135,7 +2135,7 @@ |
2136 | 2136 | wfDebug( "getLag: fake slave lagged {$this->mFakeSlaveLag} seconds\n" ); |
2137 | 2137 | return $this->mFakeSlaveLag; |
2138 | 2138 | } |
2139 | | - $res = $this->query( 'SHOW PROCESSLIST' ); |
| 2139 | + $res = $this->query( 'SHOW PROCESSLIST', __METHOD__ ); |
2140 | 2140 | # Find slave SQL thread |
2141 | 2141 | while ( $row = $this->fetchObject( $res ) ) { |
2142 | 2142 | /* This should work for most situations - when default db |