We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import cron4s._ val cron = "0 15/5 14 * * ?" val expr = Cron(cron) println(expr.toString())
why I can't set every 15/5? Not even 1/5 or 5/5 seems to work. Is it not supported in spec? Version 0.6.1
The text was updated successfully, but these errors were encountered:
It does not seem a standard cron expression though some dialects support it see https://crontab.guru/#0_15/5_14___?
Hmm, / won't working... for cron4s (AFAIK) in 0.5.0 and 0.6.1🤔
/
Sorry, something went wrong.
Ah, I think you need to explicitly specify range(e.g. 0 15-23/5 14 * * ?).
0 15-23/5 14 * * ?
https://crontab.guru/#0_15-23/5_14__
No branches or pull requests
why I can't set every 15/5? Not even 1/5 or 5/5 seems to work. Is it not supported in spec?
Version 0.6.1
The text was updated successfully, but these errors were encountered: