mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Defualting to localhost for redis.
This commit is contained in:
parent
b1a57a9bd8
commit
70a3aa4e67
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ class NBMuninGraph(MuninGraph):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(NBMuninGraph, self).__init__(*args, **kwargs)
|
||||
self.host = os.environ["REDIS_HOST"]
|
||||
self.host = os.environ.get("REDIS_HOST", "localhost")
|
||||
|
||||
@property
|
||||
def graph_config(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue