Skip to content

Commit

Permalink
fix: Switch back to 5m schedule (#55)
Browse files Browse the repository at this point in the history
This crept in by accident
  • Loading branch information
evanpurkhiser authored Jun 14, 2024
1 parent bd0b47d commit a2c93ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub async fn run_scheduler(config: &Config) -> Result<(), JobSchedulerError> {
KafkaConfig::new_config(config.results_kafka_cluster.to_owned(), None),
));

let checker_job = Job::new_async("*/10 * * * * *", move |_uuid, mut _l| {
let checker_job = Job::new_async("0 */5 * * * *", move |_uuid, mut _l| {
let job_checker = checker.clone();
let job_producer = producer.clone();

Expand Down

0 comments on commit a2c93ee

Please sign in to comment.