proxmox-rest-server: avoid useless call to request_shutdown

Also avoid unsafe code.
This commit is contained in:
Dietmar Maurer
2021-09-29 12:46:00 +02:00
parent 450105b0c3
commit a0ffd4a413
2 changed files with 8 additions and 6 deletions

View File

@ -274,7 +274,9 @@ where
let finish_future = match future::select(server_future, shutdown_future).await {
Either::Left((_, _)) => {
crate::request_shutdown(); // make sure we are in shutdown mode
if !crate::shutdown_requested() {
crate::request_shutdown(); // make sure we are in shutdown mode
}
None
}
Either::Right((_, server_future)) => Some(server_future),