From f15979ed11d06d7dc21bb44ae021bf299002c07e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Wed, 4 Mar 2026 23:33:10 +0100 Subject: [PATCH] Run cache:pool:clear --all instead of cache:clear in updater to clear really all cache pools, even app ones --- src/Services/System/UpdateExecutor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/System/UpdateExecutor.php b/src/Services/System/UpdateExecutor.php index 2fe54173..70aea23f 100644 --- a/src/Services/System/UpdateExecutor.php +++ b/src/Services/System/UpdateExecutor.php @@ -420,7 +420,7 @@ class UpdateExecutor // Step 11: Clear cache $stepStart = microtime(true); $this->runCommand([ - 'php', 'bin/console', 'cache:clear', + 'php', 'bin/console', 'cache:pool:clear', '--all', '--env=prod', '--no-interaction', ], 'Clear cache', 120); @@ -489,7 +489,7 @@ class UpdateExecutor // Clear cache after rollback $this->runCommand([ - 'php', 'bin/console', 'cache:clear', + 'php', 'bin/console', 'cache:pool:clear', '--all', '--env=prod', ], 'Clear cache after rollback', 120); $log('rollback_cache', 'Cleared cache after rollback', true);