From 30ed483b7a5a9d23296fc0d7e784fe551beb1149 Mon Sep 17 00:00:00 2001 From: David McDonald Date: Mon, 10 Aug 2020 10:25:08 +0100 Subject: [PATCH] Turn off redis in all environments for rotation This is a very short term turn off for while we rotate creds. It will then be followed immediately by a PR to turn it back on. --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index a03d4aabd..b386b85bd 100644 --- a/app/config.py +++ b/app/config.py @@ -79,7 +79,7 @@ class Config(object): ANTIVIRUS_ENABLED = True REDIS_URL = os.environ.get('REDIS_URL') - REDIS_ENABLED = os.environ.get('REDIS_ENABLED') == '1' + REDIS_ENABLED = False ASSET_DOMAIN = '' ASSET_PATH = '/static/'