Pad71 commented on PR #38096:
URL: https://github.com/apache/airflow/pull/38096#issuecomment-1996734180
Hi. I looked at the code in the commit and it seems to me that the "root"
part of the link is omitted in the url_root.
**Old one:**
url_root = url_for(
"Airflow.graph", dag_id=dag_id, **root=task_id**,
execution_date=execution_date.isoformat()
)
**New one:**
url_root = url_for(
"Airflow.grid",
dag_id=dag_id,
task_id=task_id,
dag_run_id=run_id,
tab="graph",
map_index=attr.get("map_index", -1),
)
There is no **root** in the new one. I think, the "root" filtering should
remain, only **"task_id"** should be added.
--
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]