Reputation: 3496
I need to know cron expression to run every monday between 1 and 1:30 am.
I have tried below expressions not worked.
1 * 1-2 ? * MON *
Can anyone help me to write cron expression?
Upvotes: 0
Views: 1633
Reputation: 132
Try this: 0 0-30 1 ? * MON
I think, you need at least 6 slots to fill so CRON expression is valid.
Upvotes: 1