From da5c0ca4e3991dc3a019654f755ed010410c0b0e Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 15 Sep 2016 11:06:31 -0700 Subject: [PATCH] Fix default "srvCache" BagOStuff in DatabaseBase Follow up to 4660b56f Change-Id: I19975ce66ddc318fd494d5c4a3807c62d04fad70 --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 917bc910dc..dc67e9ea2f 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -267,7 +267,7 @@ abstract class DatabaseBase implements IDatabase, LoggerAwareInterface { $this->srvCache = isset( $params['srvCache'] ) ? $params['srvCache'] - : new EmptyBagOStuff(); + : new HashBagOStuff(); $this->profiler = isset( $params['profiler'] ) ? $params['profiler'] -- 2.20.1