-
Notifications
You must be signed in to change notification settings - Fork 1.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
chore: upgrade to Rust 1.83.0 #9652
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@ognevny is attempting to deploy a commit to the Vercel Team on Vercel. A member of the Team first needs to authorize it. |
// Child::wait is run after writing `s` into stdin | ||
#[allow(clippy::zombie_processes)] |
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 is actually a valid lint. If we fail to write to the child's stdin then we will end up with a zombie processes as we exit before calling wait
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.
refactor is needed to fix this lint...
Allow CI Workflow Run
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer |
2 similar comments
Allow CI Workflow Run
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer |
Allow CI Workflow Run
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer |
### Description As discovered in #9652 (comment) We could create a zombie process if writing to the clipboard program failed as we handled the write failure without `wait`ing the clipboard process. ### Testing Instructions We no longer get a lint warning when removing `allow(clippy::zombie_process)`
Description
needless_lifetimes
excluding turborepo-lib as code generated by tonic-build are also lint so there is 50+ warnings :(zombie_process
once as it's buggyTesting Instructions