Merge pull request #18516 from tobiasge/dont-fail-on-debug

Fix #18515: Don't fail in DEBUG mode
This commit is contained in:
bctiemann
2025-01-28 15:20:52 -05:00
committed by GitHub

View File

@@ -28,4 +28,7 @@ class CoreConfig(AppConfig):
# Clear Redis cache on startup in development mode
if settings.DEBUG:
try:
cache.clear()
except Exception:
pass