Turn off redis for cred rotation

Short turn off in all environments to enable us to rotate creds. We will
then immediately follow up with enabling it back on.
This commit is contained in:
David McDonald
2020-08-10 10:38:56 +01:00
parent 6f66a63d67
commit 7b6bd21f19

View File

@@ -90,7 +90,7 @@ class Config(object):
# URL of redis instance
REDIS_URL = os.getenv('REDIS_URL')
REDIS_ENABLED = os.getenv('REDIS_ENABLED') == '1'
REDIS_ENABLED = False
EXPIRE_CACHE_TEN_MINUTES = 600
EXPIRE_CACHE_EIGHT_DAYS = 8 * 24 * 60 * 60