uranusjr commented on code in PR #55408:
URL: https://github.com/apache/airflow/pull/55408#discussion_r2344442674
##########
task-sdk/src/airflow/sdk/definitions/asset/__init__.py:
##########
@@ -323,9 +323,10 @@ class Asset(os.PathLike, BaseAsset):
factory=dict,
converter=_set_extra_default,
)
- watchers: list[AssetWatcher | SerializedAssetWatcher] = attrs.field(
- factory=list,
- )
+ # Dynamic metadata template (rendered at runtime into AssetEvent.extra)
+ event_extra_template: dict[str, Any] | None = attrs.field(factory=dict)
Review Comment:
```suggestion
event_extra_template: dict[str, Any] = attrs.field(factory=dict)
```
--
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]