use recommended method of 'sleep'
All checks were successful
CI/CD Pipeline / test (push) Successful in 8m34s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped

This commit is contained in:
philipp 2024-04-30 15:56:21 +02:00
parent 25fe4c23ef
commit 2189b082c0

View File

@ -3,7 +3,7 @@ mod waterlevel;
use std::time::Duration;
use job_scheduler_ng::{Job, JobScheduler};
use rocket::tokio::{self, task};
use rocket::tokio::{self, task, time};
use sqlx::SqlitePool;
pub fn schedule(db: &SqlitePool) {
@ -26,9 +26,10 @@ pub fn schedule(db: &SqlitePool) {
});
}));
let mut interval = time::interval(Duration::from_secs(60));
loop {
sched.tick();
std::thread::sleep(Duration::from_secs(60));
interval.tick().await;
}
});
}