Hi, am I missing something with my cron expression...
# ask-community
j
Hi, am I missing something with my cron expression for Dagster to accept it ->
dagster.core.errors.DagsterInvalidDefinitionError: Found invalid cron schedule '* * 0 * *' for schedule
? Is
* * 0 * *
not 5 field cron expression ?
🤖 2
c
That field is day of the month, needs to be 1-31
r
yup, cameron is correct - that is invalid cron. Try validating your schedule using https://crontab.guru/#*_*_0_*_*
j
ah i see, yea the generator i used must have been the 8 field and i just took off the last two. I was trying to modify the hour
Thank you!