rawwar commented on code in PR #48181:
URL: https://github.com/apache/airflow/pull/48181#discussion_r2018847946
##########
kubernetes_tests/test_base.py:
##########
@@ -231,9 +231,7 @@ def monitor_task(self, host, dag_run_id, dag_id, task_id,
expected_final_state,
time.sleep(5)
# Check task state
try:
- get_string = (
-
f"http://{host}/api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}"
- )
+ get_string =
f"http://{host}/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}"
Review Comment:
```suggestion
get_string =
f"http://{host}/api/v2/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}"
```
--
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]