From 58c54c11b9553d6d559b314f98fa961db9546f94 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Tue, 9 Jan 2024 08:34:03 +0100 Subject: [PATCH] Added missing ":" --- configuration/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index 21884c1..a512ceb 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -103,7 +103,7 @@ if 'REDIS_SENTINELS' in environ: 'INSECURE_SKIP_TLS_VERIFY': _environ_get_and_map('REDIS_CACHE_INSECURE_SKIP_TLS_VERIFY', environ.get('REDIS_INSECURE_SKIP_TLS_VERIFY', 'False'), _AS_BOOL), }, } -else +else: REDIS = { 'tasks': { 'HOST': environ.get('REDIS_HOST', 'localhost'),