From 796c3dddfd5171d2a6ae0e36c7a5980dd6f40729 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Fri, 29 Mar 2024 15:38:08 -0700 Subject: [PATCH] Replace 'hash' with CACHE_HASH to improve discovery Bug: T139216 Change-Id: Icd75953ccdb71543f3100f659fa32e1a1e7d1e26 --- includes/Engines/LuaCommon/LuaEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Engines/LuaCommon/LuaEngine.php b/includes/Engines/LuaCommon/LuaEngine.php index e9f08b90..3b4a70f3 100644 --- a/includes/Engines/LuaCommon/LuaEngine.php +++ b/includes/Engines/LuaCommon/LuaEngine.php @@ -363,7 +363,7 @@ abstract class LuaEngine extends ScribuntoEngineBase { static $cache = null; if ( !$cache ) { - $cache = ObjectCache::getLocalServerInstance( 'hash' ); + $cache = ObjectCache::getLocalServerInstance( CACHE_HASH ); } $mtime = filemtime( $fileName );