bin: daily-update: use from_millis instead of big nanosecond value
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
50654b22df
commit
00d41438b9
@ -9,13 +9,13 @@ use proxmox_backup::tools::subscription;
|
|||||||
|
|
||||||
async fn wait_for_local_worker(upid_str: &str) -> Result<(), Error> {
|
async fn wait_for_local_worker(upid_str: &str) -> Result<(), Error> {
|
||||||
let upid: pbs_api_types::UPID = upid_str.parse()?;
|
let upid: pbs_api_types::UPID = upid_str.parse()?;
|
||||||
let sleep_duration = core::time::Duration::new(0, 100_000_000);
|
let poll_delay = core::time::Duration::from_millis(100);
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
if !proxmox_rest_server::worker_is_active_local(&upid) {
|
if !proxmox_rest_server::worker_is_active_local(&upid) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
tokio::time::sleep(sleep_duration).await;
|
tokio::time::sleep(poll_delay).await;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user