From b3e34e3c4643c8fb550d23da208a298c20f7a577 Mon Sep 17 00:00:00 2001 From: Reedy Date: Wed, 27 Feb 2013 09:15:43 +0000 Subject: [PATCH] Add missing parameter in handleWriteError call Change-Id: If3ebf6f77d66121bac8e11d43582f1dbb3e88e12 --- includes/objectcache/SqlBagOStuff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/objectcache/SqlBagOStuff.php b/includes/objectcache/SqlBagOStuff.php index 5cc02d35a8..24047038e9 100644 --- a/includes/objectcache/SqlBagOStuff.php +++ b/includes/objectcache/SqlBagOStuff.php @@ -359,7 +359,7 @@ class SqlBagOStuff extends BagOStuff { ); $db->commit( __METHOD__ ); } catch ( DBQueryError $e ) { - $this->handleWriteError( $e ); + $this->handleWriteError( $e, $serverIndex ); return false; } -- 2.20.1