rawwar commented on PR #42975:
URL: https://github.com/apache/airflow/pull/42975#issuecomment-2453441589
@pierrejeambrun , I noticed that in legacy implementation, for clear dag run
endpoint with dry_run=True, the response is supposed to be a
TaskInstanceCollection. However, the response only includes few attributes of
TI. Below is an example response :
```
{
"task_instances": [
{
"dag_id": "example_astronauts",
"dag_run_id": "manual__2024-11-03T14:05:08.832062+00:00",
"execution_date": "2024-11-03T14:05:08.832062+00:00",
"task_id": "print_astronaut_craft"
},{
"dag_id": "example_astronauts",
"dag_run_id": "manual__2024-11-03T14:05:08.832062+00:00",
"execution_date": "2024-11-03T14:05:08.832062+00:00",
"task_id": "get_astronauts"
}
```
Should I keep the same? Or should I return all the details?
--
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]