bugraoz93 commented on code in PR #54073:
URL: https://github.com/apache/airflow/pull/54073#discussion_r2252555387


##########
airflow-ctl/src/airflowctl/api/operations.py:
##########
@@ -554,11 +554,10 @@ def trigger(
         self, dag_id: str, trigger_dag_run: TriggerDAGRunPostBody
     ) -> DAGRunResponse | ServerResponseError:
         """Create a dag run."""
+        if trigger_dag_run.conf is None:
+            trigger_dag_run.conf = {}

Review Comment:
   That would be a lot easier indeed. The datamodel has already `dict` as 
default factory. It seems it needs to be fixed from the API.  Because even I 
sent from Postman as `null`, it is giving an error. Field already has a default 
factory to dict. I am not sure why it is not working properly. I was thinking 
of a follow-up, but I can include it in this as well



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