Lee-W commented on code in PR #43774:
URL: https://github.com/apache/airflow/pull/43774#discussion_r1863060223
##########
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:
This is used to `evaluate` and I think `uri` is probably good enough. 🤔 or
should we just change it to (name, URI)?
--
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]