-
Notifications
You must be signed in to change notification settings - Fork 97
Unlock the LOCK files on drop #379
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
…process Signed-off-by: Yang Zhang <yang.zhang@pingcap.com>
Signed-off-by: Yang Zhang <yang.zhang@pingcap.com>
|
/test |
|
@LykxSassinator: The Use DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
/retest |
1 similar comment
|
/retest |
| authors = ["The TiKV Project Developers"] | ||
| edition = "2018" | ||
| rust-version = "1.75.0" | ||
| rust-version = "1.85.0" |
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.
Out of curiosity, does fs2::FileExt require the new rust version?
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.
No, it was not because of fs2::FileExt. It was because raft-engine as a lib does not have Cargo.lock, and one of the dependencyhalf (required by citron) that requires 1.85+.
This is fine, since TiKV master branch uses 1.85+ nightly
5f16063 to
3f151a9
Compare
Signed-off-by: Yang Zhang <yang.zhang@pingcap.com>
3f151a9 to
5ee3c9f
Compare
zhangjinpeng87
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
3da95c8 to
413f0a8
Compare
413f0a8 to
7cacf66
Compare
| authors = ["The TiKV Project Developers"] | ||
| edition = "2018" | ||
| rust-version = "1.75.0" | ||
| rust-version = "1.85.0" |
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.
Should we update the minimum required rust version baseline?
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: LykxSassinator, overvenus, zhangjinpeng87 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
We need to restart the Raft Engine within a test case to apply a configuration change. To do this, we must ensure the LOCK files are released upon drop, allowing the engine to be reopened within the same process.
Also update rustc version and fix clippy errors, since some dependencies require higher versions of Rust