From 6d74443f2180f6236bdc1c7106a528ecc8f191dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Fri, 14 Sep 2018 08:40:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20REDIS=5FPORT=20should=20be=20int?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #96 --- configuration/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index 57b2320..63b6ba9 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -146,7 +146,7 @@ WEBHOOKS_ENABLED = os.environ.get('WEBHOOKS_ENABLED', 'False').lower() == 'true' # Redis database settings (optional). A Redis database is required only if the webhooks backend is enabled. REDIS = { 'HOST': os.environ.get('REDIS_HOST', 'localhost'), - 'PORT': os.environ.get('REDIS_PORT', '6379'), + 'PORT': os.environ.get('REDIS_PORT', 6379), 'PASSWORD': os.environ.get('REDIS_PASSWORD', read_secret('redis_password')), 'DATABASE': os.environ.get('REDIS_DATABASE', '0'), 'DEFAULT_TIMEOUT': os.environ.get('REDIS_TIMEOUT', '300'),