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


##########
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:
   @uranusjr I think it doesn't



-- 
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