uranusjr commented on code in PR #23516:
URL: https://github.com/apache/airflow/pull/23516#discussion_r930617885


##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -1218,6 +1218,8 @@ paths:
         '404':
           $ref: '#/components/responses/NotFound'
 
+
+

Review Comment:
   Accidental?



##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -3410,6 +3412,32 @@ components:
           description: Set state of DAG runs to RUNNING.
           type: boolean
 
+        dag_run_id:
+          type: string
+          description:  The DagRun ID for this task instance
+          nullable: true
+
+        include_upstream:
+          description: If set to true, upstream tasks are also affected.
+          type: boolean
+          default: false
+
+        include_downstream:
+          description: If set to true, downstream tasks are also affected.
+          type: boolean
+          default: false
+
+        include_future:
+          description: If set to True, also tasks from future DAG Runs are 
affected.
+          type: boolean
+          default: false
+
+        include_past:
+          description: If set to True, also tasks from past DAG Runs are 
affected.
+          type: boolean
+          default: false
+

Review Comment:
   Also you need to add these to the Marshmallow schema (you already added 
`dag_run_id` but not the others).



-- 
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]

Reply via email to