diff --git a/src/scheduler.rs b/src/scheduler.rs index 25c9656c0..98e1e536c 100644 --- a/src/scheduler.rs +++ b/src/scheduler.rs @@ -67,11 +67,12 @@ pub struct Job { #[serde(default)] pub shell: bool, #[serde(rename = "schedule")] + #[rustfmt::skip] /// The cron expression defining the job's schedule. /// /// The format is as follows: /// sec min hour day of month month day of week year - /// * * * * * * * + /// * * * * * * * pub cron: String, /// Tags for tagging the job. pub tags: Option>,