uranusjr commented on a change in pull request #17552: URL: https://github.com/apache/airflow/pull/17552#discussion_r709221806
########## File path: docs/apache-airflow/concepts/operators.rst ########## @@ -66,20 +66,20 @@ Jinja Templating ---------------- Airflow leverages the power of `Jinja Templating <http://jinja.pocoo.org/docs/dev/>`_ and this can be a powerful tool to use in combination with :ref:`macros <templates-ref>`. -For example, say you want to pass the execution date as an environment variable to a Bash script using the ``BashOperator``: +For example, say you want to pass the start of the data interval as an environment variable to a Bash script using the ``BashOperator``: .. code-block:: python - # The execution date as YYYY-MM-DD + # The start of the data interval as YYYY-MM-DD date = "{{ ds }}" Review comment: We are not, but the semantic meaning changed (it is now backed by `data_interval_start`, which is another reason why logical date is hard wired to equal to `data_interval_start` right now). -- 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]
