diff --git a/core/lib/Drupal/Core/Template/TwigCacheChain.php b/core/lib/Drupal/Core/Template/TwigCacheChain.php index dfd40a4..faffeb8 100644 --- a/core/lib/Drupal/Core/Template/TwigCacheChain.php +++ b/core/lib/Drupal/Core/Template/TwigCacheChain.php @@ -71,10 +71,10 @@ public function load($key) { * {@inheritdoc} */ public function write($key, $content) { - // We want to write to all of them. foreach ($this->caches as $cache) { try { $cache->write($key, $content); + return; } catch (\RuntimeException $e) { }