GitHub user Pavan-talluri added a comment to the discussion: schedule_interval do not work the cron expression for week days with day of month interval
Hi @jenergm, We are also dealing with this and we found that its just that Unix cron functions this way. it is not programming and operator its just plain english and airflow scheduler uses default **CronDataIntervalTimetable** [https://github.com/apache/airflow/blob/4ffa6afc721ab99a974bb8bbda74b1d9300ae456/airflow/timetables/interval.py#L119] for processing crons which underlying uses croniter library for processing crons. You can this as reference and write timetable class GitHub link: https://github.com/apache/airflow/discussions/45555#discussioncomment-11799081 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
