-
Notifications
You must be signed in to change notification settings - Fork 4
StrictRedisCluster was renamed #2
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
base: master
Are you sure you want to change the base?
Conversation
Class StrictRedisCluster was renamed to RedisCluster. All usages of this class must be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's Right. in redis 3.5.0, we have to use RedisCluster instead of StrictRedisCluster.
I modifid this and solved import error issues.
please pull this request.
|
Hi is there any update on this PR? @daedamee thanks for the update! I'm running it locally here to solve my issue. |
|
I have tested more the PR made by @daedamee, and as I use password redis, I got to a new issue. Due to the change from Old self._client = StrictRedisCluster(host=host,
port=port,
password=password,
**kwargs)New self._client = RedisCluster(startup_nodes=startup_nodes,
**kwargs)init log As quick fix I have cleaned the init to match to the new RedisCluster method, is there any good recommendation, or ideas? |
Class StrictRedisCluster was renamed to RedisCluster. All usages of this class must be updated.