-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
store: fix panic when failed to create pdclient #42885
Conversation
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by submitting an approval review. |
@@ -188,11 +188,10 @@ func (d TiKVDriver) OpenWithOptions(path string, options ...Option) (resStore kv | |||
), | |||
pd.WithCustomTimeoutOption(time.Duration(d.pdConfig.PDServerTimeout)*time.Second), | |||
pd.WithForwardingOption(config.GetGlobalConfig().EnableForwarding)) | |||
pdCli = util.InterceptedPDClient{Client: pdCli} |
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.
this will cause previous defer close panic when failed to create pdclient
@hawkingrei do you know there's a linter that can guard tha if a function returns error, the error must be checked before using other return values? |
I can't immediately think of it, but I can look for it. |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: 4a7d523
|
/retest |
1 similar comment
/retest |
In response to a cherrypick label: new pull request created to branch |
What problem does this PR solve?
Issue Number: ref #42778
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.