gabrielbckrsc commented on issue #46563:
URL: https://github.com/apache/airflow/issues/46563#issuecomment-3458961628
Having the same issue using other jinja templates default to airflow
`{{ ds }}`
and
`{{ param.date }}`
```python
data_preparation = DatabricksTaskOperator(
dag=dag,
task_id=...
databricks_conn_id='databricks_conn',
task_config=dict(
python_wheel_task=dict(
package_name=...
entry_point=...
parameters=[
'--date-range-min', '{{ ds }}',
]
)
)
)
--
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]