Hawkar Mahmod
04/15/2021, 12:15 PMTypeError: can't pickle generator objects
on a task that returns a generator. Now this task is not persisted using a Result
, there is no Result or checkpointing enabled on the task. When I run locally the flow works just fine. However when I trigger via the Prefect UI, and use S3 Storage it tries to persist all tasks I think. This is what this line in the documentation refers to I believe (see image).
How can I get this task to not be persisted by default if that is what is causing this.Noah Holm
04/15/2021, 12:58 PMcheckpoint
that should disable it.Hawkar Mahmod
04/15/2021, 1:55 PM