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


##########
airflow/models/dag.py:
##########
@@ -2297,7 +2297,7 @@ def dag_ready(dag_id: str, cond: BaseAsset, statuses: 
dict) -> bool | None:
         del all_records
         dag_statuses = {}
         for dag_id, records in by_dag.items():
-            dag_statuses[dag_id] = {x.asset.uri: True for x in records}
+            dag_statuses[dag_id] = {x.asset.name: True for x in records}

Review Comment:
   Does this break things? If `name` is good enough, `uri` should be as well?



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

Reply via email to