Hey - I have an asset with a DynamicPartitionsDefi...
# ask-community
g
Hey - I have an asset with a DynamicPartitionsDefinition and an AutoMaterializePolicy, I was expecting a materialization to kick off whenever a new partition was added but it's not happening. Am I missing something here?
Copy code
@asset(
    partitions_def=dynamic_partition_defs,
    auto_materialize_policy=AutoMaterializePolicy.eager(),
)
def foo(context):
    ...
🤖 1
D'oh. Didn't realize I had to toggle the auto-materializing daemon on facepalm
All works OK once that's turned on (in deployment/daemons for anyone else who has the same issue)