fix: bug in prior fix (#4243)

Have to tweak the config BEFORE instantiating of course
This commit is contained in:
Dag 2024-08-30 02:44:50 +02:00 committed by GitHub
parent 3e1a8b29d9
commit bb2f471a03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View file

@ -10,6 +10,7 @@ require __DIR__ . '/../lib/config.php';
$container = require __DIR__ . '/../lib/dependencies.php'; $container = require __DIR__ . '/../lib/dependencies.php';
/** @var CacheInterface $cache */
$cache = $container['cache']; $cache = $container['cache'];
$cache->clear(); $cache->clear();

View file

@ -10,15 +10,15 @@ require __DIR__ . '/../lib/config.php';
$container = require __DIR__ . '/../lib/dependencies.php'; $container = require __DIR__ . '/../lib/dependencies.php';
/** @var CacheInterface $cache */
$cache = $container['cache'];
if ( if (
Configuration::getConfig('cache', 'type') === 'file' Configuration::getConfig('cache', 'type') === 'file'
&& !Configuration::getConfig('FileCache', 'enable_purge') && !Configuration::getConfig('FileCache', 'enable_purge')
) { ) {
// Override enable_purge for this execution // Override enable_purge for this particular execution
Configuration::setConfig('FileCache', 'enable_purge', true); Configuration::setConfig('FileCache', 'enable_purge', true);
} }
/** @var CacheInterface $cache */
$cache = $container['cache'];
$cache->prune(); $cache->prune();