Skip to content
Snippets Groups Projects

Resolve "Make django-cachalot compatible with Django 3.2"

Merged Jonathan Weth requested to merge 426-make-django-cachalot-compatible-with-django-3-2 into master
2 files
+ 130
105
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -245,7 +245,7 @@ INSTALLED_APPS.append("cachalot")
DEBUG_TOOLBAR_PANELS.append("cachalot.panels.CachalotPanel")
CACHALOT_TIMEOUT = _settings.get("caching.cachalot.timeout", None)
CACHALOT_DATABASES = set(["default"])
SILENCED_SYSTEM_CHECKS += ["cachalot.W001", "cachalot.E003"]
SILENCED_SYSTEM_CHECKS += ["cachalot.W001"]
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
SESSION_CACHE_ALIAS = "default"
Loading