hussein-awala commented on code in PR #34568:
URL: https://github.com/apache/airflow/pull/34568#discussion_r1339079159
##########
airflow/api_connexion/schemas/task_instance_schema.py:
##########
@@ -180,7 +180,7 @@ def validate_form(self, data, **kwargs):
class SetSingleTaskInstanceStateFormSchema(Schema):
"""Schema for handling the request of updating state of a single task
instance."""
- dry_run = fields.Boolean(dump_default=True)
+ dry_run = fields.Boolean(dump_default=True, load_default=True)
Review Comment:
Nit: if it works without `dump_default=True`, I prefer to remove it, it
seems useless
```suggestion
dry_run = fields.Boolean(load_default=True)
```
--
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]