From be1b6b6aa3c0ad0880f72a69da70a8c31e9bc295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Thu, 4 Feb 2021 16:50:07 +0100 Subject: [PATCH] fix: add missing password when using redis in sentinel mode --- netbox/netbox/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index af5b01adc..1e77619b8 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -391,6 +391,7 @@ if CACHING_REDIS_USING_SENTINEL: 'locations': CACHING_REDIS_SENTINELS, 'service_name': CACHING_REDIS_SENTINEL_SERVICE, 'db': CACHING_REDIS_DATABASE, + 'password': CACHING_REDIS_PASSWORD, } else: if CACHING_REDIS_SSL: