ashb commented on a change in pull request #8805:
URL: https://github.com/apache/airflow/pull/8805#discussion_r425010809



##########
File path: airflow/models/dag.py
##########
@@ -1468,6 +1468,10 @@ def create_dagrun(self,
         :param session: database session
         :type session: sqlalchemy.orm.session.Session
         """
+        # Resolve relationship between task set by XComArgs
+        for task in self.tasks:
+            task.set_xcomargs_dependencies()

Review comment:
       This is going to be too late to affect the Graph view of the webserver 
isn't it?
   
   (This either needs to go much, much earlier, to dag creation time so it is 
correctly reflected in the serialized representation, or this is not needed 
here at all.)




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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to