From 2a200a708e2925e2ef213422c73bf1bdef49a135 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Fri, 12 Dec 2025 14:26:43 +0100 Subject: [PATCH] Revert "fix(CachingRouter): Disable cache for findMatchingRoute" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 90948f5096e5d2e3ad4b23ee05f2f4e84029eb10. It temporary disabled cache for routes until an actual fix was added, which is done in the following commits. Signed-off-by: Daniel Calviño Sánchez --- lib/private/Route/CachingRouter.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/private/Route/CachingRouter.php b/lib/private/Route/CachingRouter.php index 0381b1df1f2..becdb807f73 100644 --- a/lib/private/Route/CachingRouter.php +++ b/lib/private/Route/CachingRouter.php @@ -74,8 +74,6 @@ class CachingRouter extends Router { * @return array */ public function findMatchingRoute(string $url): array { - return parent::findMatchingRoute($url); - $this->eventLogger->start('cacheroute:match', 'Match route'); $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . '#rootCollection'; $cachedRoutes = $this->cache->get($key);