jedcunningham commented on pull request #20217:
URL: https://github.com/apache/airflow/pull/20217#issuecomment-992670230
Hmm, I'm not seeing a deprecation warning with this:
```python
from datetime import datetime
from airflow import DAG
from airflow.operators.bash import BashOperator
with DAG(
dag_id="no-context", schedule_interval=None, start_date=datetime(2021,
12, 10)
) as dag:
BashOperator(task_id="sleep", bash_command="echo 'Hello! {{
execution_date }}'")
```
--
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]