eladkal commented on issue #16107:
URL: https://github.com/apache/airflow/issues/16107#issuecomment-871328572
@GergelyKalmar can you be more specific about what is the bug?
```
from airflow.models import DAG
from datetime import datetime
from airflow.operators.bash import BashOperator
with DAG(
dag_id="16107",
schedule_interval='5/10 * * * * *',
start_date=datetime(2018, 1, 1),
catchup=False
) as dag:
BashOperator(task_id='try', bash_command='echo {{ ds }}')
```
It behaves as expected:

--
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]