hello, i have some io managers that log an AssetMa...
# ask-community
l
hello, i have some io managers that log an AssetMaterialization event that includes some metadata, and I notice that shortly afterwards, another AssetMaterialization event appears in the log which has no metadata. Any ideas what is going on? This is important because I need to get the latest materialization event to access the metadata, adn the empty one is considered to be the latest
I figured it out!
context.add_output_metadata
is the correct way to handle this for the asset that is being materialized, whereas you'd want to use
log_event
to log metadata for assets OTHER than the one being materialized
🌈 1