Skip to content

Commit 64b7634

Browse files
authored
update configuration.py for netbox 2.7.11 REDIS config
update configuration.py to use REDIS config referencing `tasks` in place of `webhooks`
1 parent 23e2da5 commit 64b7634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def read_secret(secret_name):
5151

5252
# Redis database settings. The Redis database is used for caching and background processing such as webhooks
5353
REDIS = {
54-
'webhooks': {
54+
'tasks': {
5555
'HOST': os.environ.get('REDIS_HOST', 'localhost'),
5656
'PORT': int(os.environ.get('REDIS_PORT', 6379)),
5757
'PASSWORD': os.environ.get('REDIS_PASSWORD', read_secret('redis_password')),

0 commit comments

Comments
 (0)