ms16
09/30/2020, 3:05 AMENTRYPOINT prefect agent start --token $PREFECT_RUNNER_TOKEN -l fargate-dev
3. When I run the docker container locally - The Precct agent starts inside the container and can see the output [2020-09-30 02:53:34,447] INFO - agent | Waiting for flow runs...
4. But the flows registered in the project never start to execute
I have RTFM but still missing a link here 😕
Here is the code of my registered flow
import prefect
from prefect import task, Flow
@task
def hello_task():
print("hello")
flow = Flow("hello-flow", tasks=[hello_task])
flow.register(project_name="Demo",labels = "fargate-dev")
Jacob Blanco
09/30/2020, 3:15 AMfargate-dev
?ms16
09/30/2020, 3:18 AM