fixed session storage, whoops

This commit is contained in:
Jenny Danzmayr 2023-12-07 17:37:26 +01:00
parent 372936fcad
commit f2f048d094

View file

@ -262,7 +262,7 @@ if HAS_REDIS:
CACHES['default'] = CACHES['redis']
else:
SESSION_CACHE_ALIAS = "redis"
SESSION_ENGINE = "django.contrib.sessions.backends.cached"
SESSION_ENGINE = "django.contrib.sessions.backends.cache"
REDIS_CONNECTION_POOL = redis.ConnectionPool.from_url(REDIS_SERVERS[0])