sidshas03 commented on code in PR #55744:
URL: https://github.com/apache/airflow/pull/55744#discussion_r2357103357


##########
airflow-ctl/src/airflowctl/api/operations.py:
##########
@@ -243,8 +243,11 @@ def create_event(
     ) -> AssetEventResponse | ServerResponseError:
         """Create an asset event."""
         try:
+            # Ensure extra is an object; DB/UI choke on null
+            if getattr(asset_event_body, "extra", None) is None:

Review Comment:
   Updated as suggested in **aeef5f7** — switched to a direct 
`asset_event_body.extra is None` check so we don’t mask schema drift; kept the 
absolute `"/assets/events"` path. Verified locally. Ready for re-review 
@bugraoz93  thanks!
   



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