We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The recent redis-py update to 3.0.0 and 3.0.1 change the signature of zadd.
redis-py
3.0.0
3.0.1
zadd
Previously it was: zadd(self, name, *args, **kwargs)
zadd(self, name, *args, **kwargs)
Now it is: zadd(self, name, mapping, nx=False, xx=False, ch=False, incr=False).
zadd(self, name, mapping, nx=False, xx=False, ch=False, incr=False)
While my code is updated for this, sadly, my unit tests had to be commented out due to this not working the same way in mockredis now.
mockredis
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The recent
redis-py
update to3.0.0
and3.0.1
change the signature ofzadd
.Previously it was:
zadd(self, name, *args, **kwargs)
Now it is:
zadd(self, name, mapping, nx=False, xx=False, ch=False, incr=False)
.While my code is updated for this, sadly, my unit tests had to be commented out due to this not working the same way in
mockredis
now.The text was updated successfully, but these errors were encountered: