mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Allow flycheck process to exit gracefully
Assuming it isn't cancelled. Closes #17902. The only place CommandHandle::join is used is when the flycheck command finishes, so this commit changes the behavior of the method itself.
This commit is contained in:
parent
91aa3f46b3
commit
da34676104
1 changed files with 0 additions and 1 deletions
|
@ -148,7 +148,6 @@ impl<T: ParseFromLine> CommandHandle<T> {
|
|||
}
|
||||
|
||||
pub(crate) fn join(mut self) -> io::Result<()> {
|
||||
let _ = self.child.0.kill();
|
||||
let exit_status = self.child.0.wait()?;
|
||||
let (read_at_least_one_message, error) = self.thread.join()?;
|
||||
if read_at_least_one_message || exit_status.success() {
|
||||
|
|
Loading…
Reference in a new issue