Fix wrong variable name in settings.py

This commit is contained in:
2020-09-15 10:29:28 +01:00
parent a5516ee350
commit 1ecc508b0d

View File

@@ -158,7 +158,7 @@ CACHES = {
}
}
# Tests lock up SQLite otherwise
if DEBUG or CI:
if DEBUG or STAGING:
CACHES['default'] = {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'
}