chore: remove non-sense pause for schedtasks

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-12 23:01:53 +01:00
parent 5633433f4c
commit 66ccd59f07

View File

@ -332,7 +332,6 @@ pub async fn main() -> BxDynResult<()> { //std::io::Result<()> {
eprintln!("Task {} no schedule defined",&it.name);
continue;
}
let pause = it.pause;
let res = match it.name.as_str() {
"monitor" =>
sched.add(Job::new(&it.schedule.to_owned(), move |uuid, _l| {
@ -354,9 +353,6 @@ pub async fn main() -> BxDynResult<()> { //std::io::Result<()> {
continue;
},
};
if pause > 0 {
tokio::time::sleep(tokio::time::Duration::from_secs(pause)).await;
}
match res {
Ok(_) => { continue; },
Err(e) => {