Guillaume Latour
02/16/2022, 3:04 PMTypeError: cannot pickle 'lxml.etree.XMLSchema' object
Of course the result of one of my task is of this type and I would prefer not to change it.
I tried to launch that process again with config.flows.checkpointing = "false"
in the ~/.prefect/config.toml
file but I got the same error...
This is an error that I cannot reproduce locally with prefect run <flow>
. Do you guys have any leads on how I can solve this issue or at least reproduce the error locally?Kevin Kho
config.flows.checkpointing = "false"
gets overridden in Cloud backed runs. You need to turn it off in the task level @task(checkpoint=False)
.Guillaume Latour
02/16/2022, 3:13 PMAnna Geller
Guillaume Latour
02/18/2022, 1:27 PMAnna Geller