From 64b763429f5ad8b4b9db69a9896869473ffe570d Mon Sep 17 00:00:00 2001 From: Ryan Merolle Date: Wed, 1 Apr 2020 23:41:35 -0400 Subject: [PATCH] update configuration.py for netbox 2.7.11 REDIS config update configuration.py to use REDIS config referencing `tasks` in place of `webhooks` --- configuration/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index af5d3ba..9ebbff0 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -51,7 +51,7 @@ SECRET_KEY = os.environ.get('SECRET_KEY', read_secret('secret_key')) # Redis database settings. The Redis database is used for caching and background processing such as webhooks REDIS = { - 'webhooks': { + 'tasks': { 'HOST': os.environ.get('REDIS_HOST', 'localhost'), 'PORT': int(os.environ.get('REDIS_PORT', 6379)), 'PASSWORD': os.environ.get('REDIS_PASSWORD', read_secret('redis_password')),