dheerajturaga commented on code in PR #68198:
URL: https://github.com/apache/airflow/pull/68198#discussion_r3374703376
##########
airflow-core/src/airflow/serialization/definitions/dag.py:
##########
@@ -618,7 +591,7 @@ def create_dagrun(
data_interval=data_interval,
run_after=coerce_datetime(run_after),
start_date=coerce_datetime(start_date),
- conf=conf,
+ conf=conf if conf is not None else dict(copied_params),
Review Comment:
Ive added this because the conf is unavailable in the hook when the dag run
is a scheduled run. I may fork this into another pr depending on how large of a
fix this would need to get CI green
--
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]