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
RedBeat uses redis-py-cluster. It's been 2 years since main redis-py project has incorporated cluster support.
redbeat/redbeat/schedulers.py
Line 143 in 5d1d5c1
A simple
from redis.cluster import RedisCluster
Should do the trick.
The text was updated successfully, but these errors were encountered:
Note that this would drop support to redis-py < 4.1, but will avoid potential issues with unmantained redis-py-cluster
Sorry, something went wrong.
fix: sibson#260 Use redis-py's RedisCluster instead of redis-py-cluster
bd85052
Drop support for redis-py < 4.1 and use redis-py's official clustering features
fix: sibson#260 Use from_url instead of specifying manually the config
28efe30
No branches or pull requests
RedBeat uses redis-py-cluster.
It's been 2 years since main redis-py project has incorporated cluster support.
References
redbeat/redbeat/schedulers.py
Line 143 in 5d1d5c1
Fix
A simple
Should do the trick.
The text was updated successfully, but these errors were encountered: