Commit 559acb60 authored by Jannis Leidel's avatar Jannis Leidel Committed by Sean Bleier

Fixed oversight in last commit.

parent 4f96e6db
...@@ -36,7 +36,7 @@ class CacheClass(BaseCache): ...@@ -36,7 +36,7 @@ class CacheClass(BaseCache):
else: else:
host = 'localhost' host = 'localhost'
port = 6379 port = 6379
self._cache = redis.Redis(host=host, port=port, db=db, password=None) self._cache = redis.Redis(host=host, port=port, db=db, password=password)
def add(self, key, value, timeout=0): def add(self, key, value, timeout=0):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment