-
Notifications
You must be signed in to change notification settings - Fork 118
Fix NullPointerException in getStore #359
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
Conversation
Signed-off-by: birdstorm <samuelwyf@hotmail.com>
| if (resp != null) { | ||
| return resp.getStore(); | ||
| } | ||
| return null; |
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.
could you add some comments about:
- the possible scenarios where get store fails with a null response
- why not throw an exception in those scenarios
Little-Wallace
left a comment
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.
LGTM
marsishandsome
left a comment
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.
LGTM
|
/merge |
|
/run-all-tests |
|
@birdstorm merge failed. |
Signed-off-by: ti-srebot <ti-srebot@pingcap.com>
|
cherry pick to release-3.1 in PR #364 |
Signed-off-by: Ankita Wagh <awagh@pinterest.com>
If
callWIthRetryreturns a null response,getStorewill throw NullPointerException.