nit compile

This commit is contained in:
Ruben Fiszel
2025-09-22 15:05:13 +00:00
parent 08952c6c6e
commit ad38298840
+1 -1
View File
@@ -234,7 +234,7 @@ pub async fn shutdown_signal(
let _ = tx.send();
spawn(async move {
tokio::time::sleep(std::time::Duration::from_hours(24 * 7)).await;
tokio::time::sleep(std::time::Duration::from_secs(24 * 7 * 60 * 60)).await;
tracing::info!("Forcefully exiting after 7 days");
std::process::exit(1);
});