jscheffl commented on code in PR #61665:
URL: https://github.com/apache/airflow/pull/61665#discussion_r2806364558


##########
airflow-core/src/airflow/serialization/serialized_objects.py:
##########
@@ -761,6 +761,8 @@ def _serialize_param(cls, param: Param):
             "description": cls.serialize(param.description),
             "schema": cls.serialize(param.schema),
             "source": cls.serialize(getattr(param, "source", None)),
+            "depends_on": cls.serialize(getattr(param, "depends_on", None)),
+            "options_map": cls.serialize(getattr(param, "options_map", None)),

Review Comment:
   If above respected then also no special handling needed here as it is 
automatically pushed to "schema" dictionary



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