diff options
Diffstat (limited to 'includes/db/LoadMonitor.php')
-rw-r--r-- | includes/db/LoadMonitor.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/db/LoadMonitor.php b/includes/db/LoadMonitor.php index a6370c9e..16a0343f 100644 --- a/includes/db/LoadMonitor.php +++ b/includes/db/LoadMonitor.php @@ -66,12 +66,16 @@ class LoadMonitor_Null implements LoadMonitor { function postConnectionBackoff( $conn, $threshold ) { } + /** + * @param $serverIndexes + * @param $wiki + * @return array + */ function getLagTimes( $serverIndexes, $wiki ) { return array_fill_keys( $serverIndexes, 0 ); } } - /** * Basic MySQL load monitor with no external dependencies * Uses memcached to cache the replication lag for a short time |