You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/12/10 23:30:32 UTC

[GitHub] [airflow] jedcunningham opened a new issue #20213: Context deprecation warnings when they aren't used

jedcunningham opened a new issue #20213:
URL: https://github.com/apache/airflow/issues/20213


   ### Apache Airflow version
   
   2.2.3rc1 (release candidate)
   
   ### What happened
   
   I ran a DAG that does nothing explicitly with context, so I'm surprised to see deprecation warnings about context being used (trimmed to cut down on noise):
   
   ```
   baseoperator.py:1107 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   baseoperator.py:1107 DeprecationWarning: Accessing 'next_ds' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds }}' instead.
   baseoperator.py:1107 DeprecationWarning: Accessing 'next_ds_nodash' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds_nodash }}' instead.
   baseoperator.py:1107 DeprecationWarning: Accessing 'next_execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_end' instead.
   baseoperator.py:1107 DeprecationWarning: Accessing 'prev_ds' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'prev_ds_nodash' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'prev_execution_date' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'prev_execution_date_success' from the template is deprecated and will be removed in a future version. Please use 'prev_data_interval_start_success' instead.
   baseoperator.py:1107 DeprecationWarning: Accessing 'tomorrow_ds' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'tomorrow_ds_nodash' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'yesterday_ds' from the template is deprecated and will be removed in a future version.
   baseoperator.py:1107 DeprecationWarning: Accessing 'yesterday_ds_nodash' from the template is deprecated and will be removed in a future version.
   ```
   
   ### What you expected to happen
   
   I'd only expect to see deprecation warnings about things my DAG is actually interacting with.
   
   ### How to reproduce
   
   Run this DAG:
   
   ```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!'")
   ```
   
   ### Operating System
   
   MacOS 11.6
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Virtualenv installation
   
   ### Deployment details
   
   _No response_
   
   ### Anything else
   
   This was introduced in #19886 (cc @uranusjr).
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr commented on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
uranusjr commented on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991445302


   We are unpacking the context too eagerly. The rendering functions need to use a much lower level Jinja2 interface.


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr commented on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
uranusjr commented on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991758317


   Thanks for spotting it, I’ll add the fix to the PR as well.


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] raphaelauv commented on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
raphaelauv commented on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991689912


   Warning are also present in` /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87`
   
   ```log
   [2021-12-11, 15:40:15 UTC] {standard_task_runner.py:77} INFO - Job 11: Subtask also_run_this
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds_nodash' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds_nodash }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_end' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date_success' from the template is deprecated and will be removed in a future version. Please use 'prev_data_interval_start_success' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} INFO - Running <TaskInstance: a_nice_dag.also_run_this scheduled__2021-12-10T00:00:00+00:00 [running]> on host c1353674fc71
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/models/baseoperator.py:1107 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   
   ```
   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] raphaelauv edited a comment on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
raphaelauv edited a comment on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991689912


   Warnings are also present in `/usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87`
   
   ```log
   [2021-12-11, 15:40:15 UTC] {standard_task_runner.py:77} INFO - Job 11: Subtask also_run_this
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds_nodash' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds_nodash }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_end' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date_success' from the template is deprecated and will be removed in a future version. Please use 'prev_data_interval_start_success' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} INFO - Running <TaskInstance: a_nice_dag.also_run_this scheduled__2021-12-10T00:00:00+00:00 [running]> on host c1353674fc71
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/models/baseoperator.py:1107 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   
   ```
   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] raphaelauv edited a comment on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
raphaelauv edited a comment on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991689912


   Warnings are also present in `/usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87`
   
   ```log
   [2021-12-11, 15:40:15 UTC] {standard_task_runner.py:77} INFO - Job 11: Subtask also_run_this
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds_nodash' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds_nodash }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_end' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date_success' from the template is deprecated and will be removed in a future version. Please use 'prev_data_interval_start_success' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} INFO - Running <TaskInstance: a_nice_dag.also_run_this scheduled__2021-12-10T00:00:00+00:00 [running]> on host c1353674fc71
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/models/baseoperator.py:1107 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   
   ```
   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr closed issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
uranusjr closed issue #20213:
URL: https://github.com/apache/airflow/issues/20213


   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] uranusjr commented on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
uranusjr commented on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991445302






-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] raphaelauv commented on issue #20213: Context deprecation warnings when they aren't used

Posted by GitBox <gi...@apache.org>.
raphaelauv commented on issue #20213:
URL: https://github.com/apache/airflow/issues/20213#issuecomment-991689912


   Warning are also present in` /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87`
   
   ```log
   [2021-12-11, 15:40:15 UTC] {standard_task_runner.py:77} INFO - Job 11: Subtask also_run_this
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_ds_nodash' from the template is deprecated and will be removed in a future version. Please use '{{ data_interval_end | ds_nodash }}' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'next_execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_end' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'prev_execution_date_success' from the template is deprecated and will be removed in a future version. Please use 'prev_data_interval_start_success' instead.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'tomorrow_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/utils/log/file_task_handler.py:87 DeprecationWarning: Accessing 'yesterday_ds_nodash' from the template is deprecated and will be removed in a future version.
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} INFO - Running <TaskInstance: a_nice_dag.also_run_this scheduled__2021-12-10T00:00:00+00:00 [running]> on host c1353674fc71
   [2021-12-11, 15:40:15 UTC] {logging_mixin.py:109} WARNING - /usr/local/lib/python3.9/site-packages/airflow/models/baseoperator.py:1107 DeprecationWarning: Accessing 'execution_date' from the template is deprecated and will be removed in a future version. Please use 'data_interval_start' or 'logical_date' instead.
   
   ```
   


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org