-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
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
sort start/num check is broken #1
Comments
closed by d09367d by checking for None rather than boolean on sort params since 0 is valid. |
Thanks! Commited to github in d09367d, will be available in the next release. |
Closed
Closed
andymccurdy
pushed a commit
that referenced
this issue
Nov 5, 2018
Remove reason arg from client_unblock. Use boolean 'error' arg instead. xref: #1036 (review)
andymccurdy
pushed a commit
that referenced
this issue
Jan 27, 2019
pycodestyle fixes to connection.py
Closed
bellatoris
pushed a commit
to bellatoris/redis-py
that referenced
this issue
Jul 13, 2023
* [GROW-2938] do not reset redis_connection on an error * [GROW-2938] add backoff to more errors * [GROW-2938] recover from SlotNotCoveredError * [GROW-2938] prevent get_node_from_slot from failing due to concurrent cluster slots refresh * [GROW-2938] add retry to ClusterPipeline (cherry picked from commit 63e06dd)
bellatoris
pushed a commit
to bellatoris/redis-py
that referenced
this issue
Jul 13, 2023
6 tasks
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
0 is False in Python, so passing start=0, num=20 to sort will return all the results.
Line 676:
if start and num
Should be:
if start != None and num != None:
The text was updated successfully, but these errors were encountered: