Skip to content

Commit c30fef4

Browse files
committed
Always decorate Symfonys config_cache_factory service with WfdMetaConfigCacheFactory
The WfdMetaConfigCacheFactory creates a cache that checks its freshness by: 1. checking the "inner" cache with Symfony means 2. if that is still fresh, the WfdMetaConfigCache queries the wfd_meta table in regard to the registered wfdMeta-resources like a DoctrineEntityClassResource for a Page entity. The decoration only taking place when `always_expire_wfd_meta_resources` was not set effectively disabled checking the wfdMeta-resources, at least in production environments. (The fact that one probably shouldn't use this configuration setting in production is another story.) This should not break anything, as the decoration already happened always, before the `always_expire_wfd_meta_resources` config setting was introduced in c7a2e2b.
1 parent 6d1c18e commit c30fef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DependencyInjection/WebfactoryWfdMetaExtension.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ public function load(array $configs, ContainerBuilder $container): void
3333
$configuration = new Configuration();
3434
$config = $this->processConfiguration($configuration, $configs);
3535

36+
$xmlLoader->load('config_cache_factory.xml');
37+
3638
if ($config['always_expire_wfd_meta_resources']) {
3739
$yamlLoader->load('cache_busting.yml');
38-
} else {
39-
$xmlLoader->load('config_cache_factory.xml');
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)