Skip to content

Commit

Permalink
Merge pull request #4138 from RasaHQ/update-redis
Browse files Browse the repository at this point in the history
Update redis
  • Loading branch information
MetcalfeTom committed Aug 6, 2019
2 parents 13461d6 + d44da22 commit 3868143
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ matplotlib==3.0.3
simplejson==3.16.0
attrs==19.1.0
jsonpickle==1.1
redis==3.2.1
redis==3.3.5
fakeredis==1.0.3
pymongo==3.8.0
numpy==1.16.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"simplejson~=3.16",
"attrs>=18",
"jsonpickle~=1.1",
"redis~=3.2",
"redis~=3.3.5",
"fakeredis~=1.0",
"pymongo~=3.8",
"numpy~=1.16",
Expand Down
4 changes: 4 additions & 0 deletions tests/core/test_trackers.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ class MockRedisTrackerStore(RedisTrackerStore):
def __init__(self, domain):
self.red = fakeredis.FakeStrictRedis()
self.record_exp = None

# added in redis==3.3.0, but not yet in fakeredis
self.red.connection_pool.connection_class.health_check_interval = 0

TrackerStore.__init__(self, domain)


Expand Down

0 comments on commit 3868143

Please sign in to comment.