Merge "SeenTime: Actually use an in-process cache"

This commit is contained in:
jenkins-bot 2024-11-21 08:13:21 +00:00 committed by Gerrit Code Review
commit 4786e85782

View file

@ -56,7 +56,7 @@ class SeenTime {
'Either $wgEchoSeenTimeCacheType or $wgMainStash must be set' 'Either $wgEchoSeenTimeCacheType or $wgMainStash must be set'
); );
} }
return new CachedBagOStuff( $services->getObjectCacheFactory()->getInstance( $cacheConfig ) ); $wrappedCache = new CachedBagOStuff( $services->getObjectCacheFactory()->getInstance( $cacheConfig ) );
} }
return $wrappedCache; return $wrappedCache;