From 355ebadd108f51708b692b4d232dd25f010e9829 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Fri, 14 Feb 2020 12:31:41 +0100 Subject: [PATCH] Fixed configuration inconsistency for Redis cache In the configuration.py we use database 1 as the default but in the .env file we used 0. This sets both values to 1 as the default. --- env/netbox.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/netbox.env b/env/netbox.env index aaa7482..008196e 100644 --- a/env/netbox.env +++ b/env/netbox.env @@ -20,7 +20,7 @@ REDIS_DATABASE=0 REDIS_SSL=false REDIS_CACHE_HOST=redis-cache REDIS_CACHE_PASSWORD=t4Ph722qJ5QHeQ1qfu36 -REDIS_CACHE_DATABASE=0 +REDIS_CACHE_DATABASE=1 REDIS_CACHE_SSL=false SECRET_KEY=r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj SKIP_STARTUP_SCRIPTS=false