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
Describe the bug Readme claims RedisSimpleQueue is compatible with Python’s SimpleQueue, but RedisSimpleQueue().get(block=False` blocks forever
RedisSimpleQueue
SimpleQueue
To Reproduce Steps to reproduce the behavior:
from pottery import RedisSimpleQueue q = RedisSimpleQueue(redis=redis, key='1') q.get(block=False)
Expected behavior queue.SimpleQueue() rises an Empty error. Expect that queue.SimpleQueue() do the same.
queue.SimpleQueue()
Empty
Environment (please complete the following information):
OS: [e.g. macOS, Linux]
uname -a Darwin xxx 20.6.0 Darwin Kernel Version 20.6.0: Wed Nov 10 22:23:05 PST 2021; root:xnu-7195.141.14~1/RELEASE_ARM64_T8101 arm64
Python version 3.9.15
Redis version 6.2.5
The text was updated successfully, but these errors were encountered:
brainix
No branches or pull requests
Describe the bug
Readme claims
RedisSimpleQueue
is compatible with Python’sSimpleQueue
, but RedisSimpleQueue().get(block=False` blocks foreverTo Reproduce
Steps to reproduce the behavior:
Expected behavior
queue.SimpleQueue()
rises anEmpty
error. Expect thatqueue.SimpleQueue()
do the same.Environment (please complete the following information):
OS: [e.g. macOS, Linux]
Python version 3.9.15
Redis version 6.2.5
The text was updated successfully, but these errors were encountered: