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:
Thomas Lamprecht 2022-02-22 10:25:40 +01:00
parent 50654b22df
commit 00d41438b9

View File

@ -9,13 +9,13 @@ use proxmox_backup::tools::subscription;
async fn wait_for_local_worker(upid_str: &str) -> Result<(), Error> {
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 {
if !proxmox_rest_server::worker_is_active_local(&upid) {
break;
}
tokio::time::sleep(sleep_duration).await;
tokio::time::sleep(poll_delay).await;
}
Ok(())
}