Hi all! Is there a way to disable task checkpointi...
# prefect-community
d
Hi all! Is there a way to disable task checkpointing at
Flow
initialization? Or is the best way to unset
prefect.config.flows.checkpointing
before building the
Flow
?
a
unfortunately, when running with Prefect backend, you need to disable checkpointing on the task decorator explicitly to disable it for local development, you can disable it entirely though
d
Ah, I should have been more clear: I am doing local development and using Prefect Core. Does that change things?
k
You could make that config False, which it should be by default
d
oooh gotcha! Thanks @Kevin Kho @Anna Geller
👍 1