utkarsharma2 commented on code in PR #31662:
URL: https://github.com/apache/airflow/pull/31662#discussion_r1212828191
##########
airflow/www/views.py:
##########
@@ -3067,7 +3067,7 @@ class GraphForm(DateTimeWithNumRunsWithDagRunsForm):
tasks = {
t.task_id: {
"dag_id": t.dag_id,
- "task_type": t.task_type,
+ "operator_name": t.operator_name,
Review Comment:
@uranusjr I removed it, it turns out we don't need to change that part of
the code.
The only usage of `task_type` is at
https://github.com/apache/airflow/blob/3bcaf3dd7e71993e1a89cf9367bf7c540cc88e75/airflow/www/static/js/graph.js#L211
Which I think should remain intact.
--
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]