uranusjr commented on code in PR #35096:
URL: https://github.com/apache/airflow/pull/35096#discussion_r1384407836


##########
airflow/models/dagrun.py:
##########
@@ -258,6 +281,14 @@ def validate_run_id(self, key: str, run_id: str) -> str | 
None:
             )
         return run_id
 
+    @hybrid_property
+    def conf(self):
+        return self._conf
+
+    @conf.setter
+    def conf(self, value):
+        self._conf = ConfDict(value)

Review Comment:
   Does this need to check if the incoming value is already a ConfDict?



-- 
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-unsubscr...@airflow.apache.org

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

Reply via email to