Skip to content

Commit

Permalink
Default to localhost in example Redis configs (needed for CI to work)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Dec 6, 2019
1 parent 45917f8 commit 47fefbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions netbox/netbox/configuration.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 47fefbe

Please sign in to comment.