When updating from v2018.1.x or v2018.2.x to v2018.4.6, invalid cron schedules are automatically disabled. You cannot enable them unless you first correct the associated cron expressions. See below examples of incorrect cron syntax, the corrected expression, and its description.
Incorrect Syntax | Corrected Syntax | Description |
---|---|---|
0 45/60 09-16 ? * MON-FRI * | 0 45 09-16 ? * MON-FRI * | At 45 minutes past the hour, between 09:00 AM and 04:59 PM, Monday through Friday. |
0 30/60 09-15 ? * MON-FRI * | 0 30 09-15 ? * MON-FRI * | At 30 minutes past the hour, between 09:00 AM and 03:59 PM, Monday through Friday. |
0 0/120 22-03 ? * MON-SAT * | 0 0 22-03/2 ? * MON-SAT * | Every 2 hours, between 10:00 PM and 03:59 AM, Monday through Saturday. |
Please note that this issue is only encountered for schedules defined specifically with cron expressions, using the Advanced option.
Updated 3 years ago