diff --git a/job/src/task/google_iap.rs b/job/src/task/google_iap.rs index a6621f8..223e1b4 100644 --- a/job/src/task/google_iap.rs +++ b/job/src/task/google_iap.rs @@ -1,7 +1,7 @@ use tokio_cron_scheduler::{Job, JobSchedulerError}; pub fn get_task() -> Result { - Job::new("0/10 * * * * ?", |_uuid, _l| { + Job::new("0 0 0/1 * * ?", |_uuid, _l| { tracing::info!("定时任务执行中..."); }) }