From 9442f8c1960f9d13b0e0216f5e60d083d6abf4d4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 24 Aug 2015 04:57:26 -0700 Subject: [PATCH] Fixed HashRing IDE errors Change-Id: Ia3fa0df6f13adc4788d1414a9bc965fdc4ec1915 --- includes/libs/HashRing.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/libs/HashRing.php b/includes/libs/HashRing.php index 2022b225c7..e7a10997cc 100644 --- a/includes/libs/HashRing.php +++ b/includes/libs/HashRing.php @@ -223,8 +223,8 @@ class HashRing { * @return array List of locations * @throws UnexpectedValueException */ - public function getLiveLocations( $item ) { - return $this->getLiveRing()->getLocations( $item ); + public function getLiveLocations( $item, $limit ) { + return $this->getLiveRing()->getLocations( $item, $limit ); } /** -- 2.20.1