Ensure validator process is killed when fullnode.sh is killed (#4869)

automerge
This commit is contained in:
Michael Vines
2019-06-28 14:24:44 -07:00
committed by Grimes
parent 0fa1af5d47
commit 76413cbfac
2 changed files with 21 additions and 6 deletions

View File

@ -793,7 +793,8 @@ pub fn run(
Ok(true) => {
// Update successful, kill current process so it will be restart
if let Some(ref mut child) = child_option {
println!("Killing program: {:?}", child.kill());
let id = child.id();
println!("Killing pid {}: {:?}", id, child.kill());
}
}
Ok(false) => {} // No update available