Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2024-11-05 01:58:54 +00:00 committed by GitHub
parent 61ea6dc13f
commit 28664d7c27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -507,12 +507,10 @@ pub async fn make_process_loop(
reinitialize.await; reinitialize.await;
None None
} }
Some(wait_till) => { Some(wait_till) => Some(tokio::spawn(async move {
Some(tokio::spawn(async move { tokio::time::sleep_until(wait_till).await;
tokio::time::sleep_until(wait_till).await; reinitialize.await;
reinitialize.await; })),
}))
}
}; };
*restart_backoff_lock = Some(RestartBackoff { *restart_backoff_lock = Some(RestartBackoff {
next_soonest_restart_time, next_soonest_restart_time,