tirkarthi commented on issue #41270:
URL: https://github.com/apache/airflow/issues/41270#issuecomment-2271649681
Can you please add a sample dag to reproduce this locally? By don't work do
you mean the dag is triggered on incorrect dates or not triggered at all?
I tried a dag with schedule as `0 17 * * 1-2` and it renders the planned
dates as expected in calendar with next dagrun also being calculated correctly.
Sample dag
```python
from datetime import datetime, timedelta
from airflow import DAG
from airflow.decorators import task
with DAG(
dag_id="error_color",
start_date=datetime(2024, 1, 1),
catchup=False,
schedule_interval="0 17 * * 1-2",
) as dag:
@task
def empty():
pass
empty()
```

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]