vincbeck commented on code in PR #45562: URL: https://github.com/apache/airflow/pull/45562#discussion_r1917175713
########## airflow/serialization/serialized_objects.py: ########## @@ -297,6 +306,25 @@ def decode_asset_condition(var: dict[str, Any]) -> BaseAsset: raise ValueError(f"deserialization not implemented for DAT {dat!r}") +def decode_asset(var: dict[str, Any]) -> BaseAsset: + """ + Decode a previously serialized asset. + + :meta private: + """ + + def _decode_trigger(trigger_infos: dict[str, Any]) -> BaseTrigger: + return import_string(trigger_infos["classpath"])(**trigger_infos["kwargs"]) Review Comment: As far as I understand, this is how triggers are designed. The triggerer works the same way: it retrieves the trigger classpath from the database and imports it. How would you suggest doing it differently? -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org