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

View File

@ -415,7 +415,7 @@ pub fn execute(cmd: RunCmd, can_restart: bool, logger: Arc<RotatingLogger>) -> R
} }
// Handle exit // 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..."); info!("Finishing work, please wait...");
@ -428,7 +428,7 @@ pub fn execute(cmd: RunCmd, can_restart: bool, logger: Arc<RotatingLogger>) -> R
// terminated gracefully // terminated gracefully
drop(hypervisor); drop(hypervisor);
Ok(false) Ok(restart)
} }
#[cfg(not(windows))] #[cfg(not(windows))]