diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-07-31 21:05:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 21:05:09 -0400 |
commit | a13db3650eb9e235a7bf43f904b2dc2baf6269fe (patch) | |
tree | 57dc3ce1b2a37186081cb424120f4a52183fde27 /cli/lsp/parent_process_checker.rs | |
parent | 8f00b5542caffd14988b923efe4f066b712d2858 (diff) |
fix(lsp): do not output to stderr before exiting the process (#11562)
Diffstat (limited to 'cli/lsp/parent_process_checker.rs')
-rw-r--r-- | cli/lsp/parent_process_checker.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/lsp/parent_process_checker.rs b/cli/lsp/parent_process_checker.rs index a081d317f..9e48c3fa8 100644 --- a/cli/lsp/parent_process_checker.rs +++ b/cli/lsp/parent_process_checker.rs @@ -12,7 +12,6 @@ pub fn start(parent_process_id: u32) { sleep(Duration::from_secs(30)).await; if !is_process_active(parent_process_id) { - eprintln!("Parent process lost. Exiting."); std::process::exit(1); } } |