From 80cf20d8f2d8ae04d2a60271170e6709b382fd34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Thu, 17 Apr 2025 23:18:19 +0200 Subject: [PATCH] anable LocalCacheProxy correctly --- src/c3nav/mapdata/utils/cache/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c3nav/mapdata/utils/cache/local.py b/src/c3nav/mapdata/utils/cache/local.py index 0e660f24..e9866cf6 100644 --- a/src/c3nav/mapdata/utils/cache/local.py +++ b/src/c3nav/mapdata/utils/cache/local.py @@ -55,7 +55,7 @@ class LocalCacheProxy: This gets called when the per request cache middleware is loaded. We don't want local cache proxies to work outside of requests. """ - LocalCacheProxy.enabled = False + LocalCacheProxy.enabled = True def set(self, key, value, expire): self._check_mapupdate()