-
Notifications
You must be signed in to change notification settings - Fork 5.6k
refactor: reland "preserve ProcState::file_fetcher between restarts" #17636
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
runtime/ops/signal.rs
Outdated
@@ -298,7 +298,7 @@ pub fn signal_str_to_int(s: &str) -> Result<libc::c_int, AnyError> { | |||
"SIGINFO" => Ok(29), | |||
"SIGUSR1" => Ok(30), | |||
"SIGUSR2" => Ok(31), | |||
_ => Err(type_error(format!("Invalid signal: {s}"))), | |||
_ => Err(type_error(format!("Invalid signal: {}", s))), |
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.
Can you revert these back? It will fail when running clippy on mac.
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 once the mac clippy issue is fixed. Thanks @nayeemrmn!
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 too
…17636) Just some watcher init step that I thought would be "cloned over" but needs to be done again on reset.
Just some watcher init step that I thought would be "cloned over" but needs to be done again on reset (b1d2c0e)
Reland #15466
Add test for #17584