GitHub user eladkal added a comment to the discussion: schedule_interval do not work the cron expression for week days with day of month interval
> When I try using the cron expression "0 10 1-7 * 1". Must execute the first > monday at 10am for each month but it executes the first seven days of each > month at 10am. > Must execute the first monday at 10am for each month. This cron expression doesn't say what you think it say. https://crontab.guru/#0_10_1-7_*_1  Either find a cron expresion that says what you wish or use [Timetable](https://airflow.apache.org/docs/apache-airflow/stable/authoring-and-scheduling/timetable.html#timetables) if you need customize behavior GitHub link: https://github.com/apache/airflow/discussions/45555#discussioncomment-11799079 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
