Skip to content
Snippets Groups Projects
Commit 408f452f authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2353823 by ultimike: D6->D8 Migration missing variable: cache.

parent 6fa0c888
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -8,10 +8,12 @@ source:
- preprocess_css
- preprocess_js
- cache_lifetime
- cache
process:
'css/preprocess': preprocess_css
'js/preprocess': preprocess_js
'cache/page/max_age': cache_lifetime
'cache/page/use_internal': cache
destination:
plugin: config
config_name: system.performance
......@@ -33,6 +33,10 @@ public function load() {
'name' => 'cache_lifetime',
'value' => 'i:0;',
))
->values(array(
'name' => 'cache',
'value' => 'i:1;',
))
->execute();
}
......
......@@ -40,6 +40,7 @@ public function testSystemPerformance() {
$this->assertIdentical($config->get('css.preprocess'), FALSE);
$this->assertIdentical($config->get('js.preprocess'), FALSE);
$this->assertIdentical($config->get('cache.page.max_age'), 0);
$this->assertIdentical($config->get('cache.page.use_internal'), TRUE);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment