Hi guys, despite the following code, these warning...
# ask-community
n
Hi guys, despite the following code, these warnings keeps printing: "...dagster\_serdes\serdes.py477 ExperimentalWarning: "AutoMaterializePolicy" is an experimental class..." Any ideas? Thx!
Copy code
warnings.filterwarnings("ignore", category=ExperimentalWarning)

@asset(auto_materialize_policy=AutoMaterializePolicy.eager())
def agenda(turnos):
j
hey @Nico Kuz that should be what you do, but i have seen the filterwarnings be flaky/not work as expected in the past. what happens if you try to ignore all warnings? i’d try playing around with the settings and see if other filters are working or if it’s just this one
n
Hi! Do you mean?... Doesn´t work either
Copy code
warnings.filterwarnings("ignore")
j
interesting. we have a discussion about this here https://github.com/dagster-io/dagster/discussions/13112 but my guess is it’s something with the warnings library?
👀 1