anishgirianish commented on code in PR #65447:
URL: https://github.com/apache/airflow/pull/65447#discussion_r3222708849
##########
task-sdk/src/airflow/sdk/execution_time/task_runner.py:
##########
@@ -1138,7 +1144,11 @@ def _serialize_outlet_events(events:
OutletEventAccessorsProtocol) -> Iterator[d
# Further filtering will be done in the API server.
for key, accessor in events._dict.items():
if isinstance(key, AssetUniqueKey):
- yield {"dest_asset_key": attrs.asdict(key), "extra":
accessor.extra}
+ yield {
+ "dest_asset_key": attrs.asdict(key),
+ "extra": accessor.extra,
+ "partition_keys": list(accessor.partition_keys),
Review Comment:
Dropped the copy, not needed, 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]