Join up the final dots.

This commit is contained in:
Gav Wood 2016-12-11 13:10:33 +01:00
parent d9f6ea56ef
commit 8d7a63bbea
No known key found for this signature in database
GPG Key ID: C49C1ACA1CC9B252
1 changed files with 2 additions and 2 deletions

View File

@ -415,7 +415,7 @@ pub fn execute(cmd: RunCmd, can_restart: bool, logger: Arc<RotatingLogger>) -> R
}
// Handle exit
wait_for_exit(panic_handler, http_server, ipc_server, dapps_server, signer_server, updater, can_restart);
let restart = wait_for_exit(panic_handler, http_server, ipc_server, dapps_server, signer_server, updater, can_restart);
info!("Finishing work, please wait...");
@ -428,7 +428,7 @@ pub fn execute(cmd: RunCmd, can_restart: bool, logger: Arc<RotatingLogger>) -> R
// terminated gracefully
drop(hypervisor);
Ok(false)
Ok(restart)
}
#[cfg(not(windows))]