arjav1528 commented on code in PR #60161:
URL: https://github.com/apache/airflow/pull/60161#discussion_r2676731945
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/task_instances.py:
##########
@@ -921,11 +921,17 @@ def bulk_task_instances(
dag_bag: DagBagDep,
dag_run_id: str,
user: GetUserDep,
-) -> BulkResponse:
+ dry_run: bool = Query(
+ False, description="If True, return affected task instances without
making changes"
+ ),
+) -> BulkResponse | TaskInstanceCollectionResponse:
Review Comment:
Thank you so much for reviewing the PR! 😊
I’ll go through them carefully and push the necessary updates shortly.
--
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]