PashkPashk commented on code in PR #35096:
URL: https://github.com/apache/airflow/pull/35096#discussion_r1370692991
##########
airflow/models/dagrun.py:
##########
@@ -210,7 +234,7 @@ def __init__(
execution_date: datetime | None = None,
start_date: datetime | None = None,
external_trigger: bool | None = None,
- conf: Any | None = None,
+ _conf: Any | None = None,
Review Comment:
@uranusjr Fixed
##########
airflow/models/dagrun.py:
##########
@@ -228,7 +252,7 @@ def __init__(
self.execution_date = execution_date
self.start_date = start_date
self.external_trigger = external_trigger
- self.conf = conf or {}
+ self._conf = ConfDict(_conf)
Review Comment:
@uranusjr Fixed
--
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]