Skip to content

Commit

Permalink
Fixed: redis_decoder error
Browse files Browse the repository at this point in the history
  • Loading branch information
howie6879 committed Jul 17, 2018
1 parent 0febc46 commit 0da5b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expire/redis_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class RedisCache(BaseCache):
_db = {}
_cache_conn = None

def __init__(self, host="127.0.0.1", port=6379, db=0, password=None, decode_responses=True,
def __init__(self, host="127.0.0.1", port=6379, db=0, password=None, decode_responses=False,
serializer=None, **kwargs):
if serializer is None:
serializer = PickleSerializer
Expand Down

0 comments on commit 0da5b3d

Please sign in to comment.