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:
   ![Screen Shot 2021-06-30 at 14 38 
07](https://user-images.githubusercontent.com/45845474/123954221-d2db7000-d9b0-11eb-8a6b-67e74933c7b1.png)
   
   


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


Reply via email to