-
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
Fix AttributeError when client.get_default_node() returns None #3458
Conversation
06c3e3d
to
2091636
Compare
Can you provide more information? How do you use redis-py? We are also trying related features and want to make sure we don’t encounter the same error. |
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.
Hi @bacchuswng, can you please share more details about your code where you hit that issue - how do you use the RedisCluster client. I tried to reproduce something like it, but with no luck...
Before merging some fix, we should know how exactly we get into the problematic case and validate that this is the correct fix and not just hiding another problem...
@petyaslavova Understood. Unfortunately, this specific issue is extremely hard to repro and only happened under load with a lot of concurrency. Staring at the code, it is generally possible that |
@bacchuswng Ok :) I agree that this change is simply a safeguard to prevent accessing a field on None. In this case, just update the comment to something like:
|
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.
The requested change is posted previously. This update is just to have the corresponding status in the PRs list.
77e8d43
to
d514ea1
Compare
Done! |
Pull Request check-list
Please make sure to review and check all of these items:
NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Description of change
The default node is sometimes None. It's not obvious from the code how this happens (maybe an Exception that isn't being handled correctly, or a connection-related object is being closed while pipeline execution is still in progress). Regardless, we've observed
AttributeError: 'NoneType' object has no attribute 'name'
in practice.Adding this defensive check ensures that we don't run into this issue.