From 47fefbec078305a57bc620af7706fbca2182a659 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 6 Dec 2019 12:00:51 -0500 Subject: [PATCH] Default to localhost in example Redis configs (needed for CI to work) --- netbox/netbox/configuration.example.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/netbox/configuration.example.py b/netbox/netbox/configuration.example.py index bceb7ab1782..6b0680da042 100644 --- a/netbox/netbox/configuration.example.py +++ b/netbox/netbox/configuration.example.py @@ -31,9 +31,9 @@ # Full connection details are required in both sections, even if they are the same. REDIS = { 'webhooks': { - 'HOST': 'redis.example.com', - 'PORT': 1234, - 'PASSWORD': 'foobar', + 'HOST': 'localhost', + 'PORT': 6379, + 'PASSWORD': '', 'DATABASE': 0, 'DEFAULT_TIMEOUT': 300, 'SSL': False,