jason810496 commented on code in PR #55660: URL: https://github.com/apache/airflow/pull/55660#discussion_r2396942641
########## airflow-core/src/airflow/api_fastapi/core_api/routes/public/task_instances.py: ########## @@ -79,13 +79,16 @@ ) from airflow.api_fastapi.logging.decorators import action_logging from airflow.exceptions import TaskNotFound +from airflow.exceptions import AirflowClearRunningTaskException from airflow.models import Base, DagRun from airflow.models.taskinstance import TaskInstance as TI, clear_task_instances from airflow.models.taskinstancehistory import TaskInstanceHistory as TIH from airflow.ti_deps.dep_context import DepContext from airflow.ti_deps.dependencies_deps import SCHEDULER_QUEUED_DEPS from airflow.utils.db import get_query_count from airflow.utils.state import DagRunState, TaskInstanceState +from flask import jsonify +from airflow.configuration import conf Review Comment: ```suggestion ``` -- 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]
