You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import fakeredis
>>> r = fakeredis.FakeStrictRedis()
>>> r.set('foo', 'bar')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/srv/venvs/service/trusty/service_venv_python3.6/lib/python3.6/site-packages/redis/client.py", line 1519, in set
return self.execute_command('SET', *pieces)
File "/srv/venvs/service/trusty/service_venv_python3.6/lib/python3.6/site-packages/redis/client.py", line 838, in execute_command
conn.send_command(*args)
File "/srv/venvs/service/trusty/service_venv_python3.6/lib/python3.6/site-packages/redis/connection.py", line 674, in send_command
check_health=kwargs.get('check_health', True))
File "/srv/venvs/service/trusty/service_venv_python3.6/lib/python3.6/site-packages/redis/connection.py", line 648, in send_packed_command
self.check_health()
File "/srv/venvs/service/trusty/service_venv_python3.6/lib/python3.6/site-packages/redis/connection.py", line 629, in check_health
if self.health_check_interval and time() > self.next_health_check:
AttributeError: 'FakeConnection' object has no attribute 'health_check_interval'
The text was updated successfully, but these errors were encountered:
Would you mind tagging a new release with this? 🙏We use your awesome package as part of our test suite and this issue is preventing us from upgrading from a vulnerable version of redis
fakeredis==1.0.3
redis==3.3.4
hiredis==1.0.0
The text was updated successfully, but these errors were encountered: