Manuel Mourato
04/21/2020, 3:41 PM# CREATE STORAGE
storage=storage.build()
# ADD FLOWS TO STORAGE
storage.add_flow(test_flow)
storage.add_flow(test_flow2)
storage=storage.build()
test_flow.storage=storage
test_flow2.storage=storage
# REGISTER FLOWS IN UI/DB
test_flow.register(build=False)
test_flow2.register(build=False)
And they indeed appear in the UI (image bellow)
Then I start the agent in my cli (image bellow)
But when I try to run one of these flows, they stay permanently schedulled (image bellow)
What am I doing wrong?
TyZachary Hughes
04/21/2020, 3:47 PMManuel Aristarán
04/21/2020, 3:48 PMZachary Hughes
04/21/2020, 3:49 PMManuel Aristarán
04/21/2020, 3:49 PMZachary Hughes
04/21/2020, 3:57 PMManuel Mourato
04/21/2020, 4:00 PMprefect agent start
But I will try to give one of those labels to the flows and see if it worksZachary Hughes
04/21/2020, 4:00 PMManuel Mourato
04/21/2020, 4:13 PMZachary Hughes
04/21/2020, 4:18 PMpython_dependencies
to your Docker storage should ensure your flow has the specified components.Manuel Mourato
04/21/2020, 4:26 PMZachary Hughes
04/21/2020, 4:28 PM