I am running into an error when trying to a register a Docker Flow, I don’t recognize these errors. Could you guys let me know if there is anything I am missing here?
j
josh
04/01/2020, 8:26 PM
Could you try something on your flow object:
Copy code
from prefect import Flow
from prefect.serialization.flow import FlowSchema
f = Flow('my_flow')
s = flow.serialize()
FlowSchema().load(s)