Lee-W commented on code in PR #57352:
URL: https://github.com/apache/airflow/pull/57352#discussion_r2468311270
##########
airflow-core/src/airflow/models/taskinstance.py:
##########
@@ -1399,13 +1400,14 @@ def _asset_event_extras_from_aliases() ->
dict[tuple[AssetUniqueKey, frozenset],
if alias_name not in outlet_alias_names:
continue
asset_key = AssetUniqueKey(**event["dest_asset_key"])
- extra_key = frozenset(event["extra"].items())
- d[asset_key, extra_key].add(alias_name)
+ extra_json = json.dumps(event["extra"], sort_keys=True,
ensure_ascii=True)
Review Comment:
yep, this is not user-facing. should be good
--
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]