From 1ecc508b0df01d380e698d16115c76b48633e9e5 Mon Sep 17 00:00:00 2001 From: FreneticScribbler Date: Tue, 15 Sep 2020 10:29:28 +0100 Subject: [PATCH] Fix wrong variable name in settings.py --- PyRIGS/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index 09619858..685cd6bb 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -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' }