Joseph Loss
07/07/2021, 10:02 PMFlow run 478adfa1-5f4f-4dec-a121-a2443bc0a253 has a `run_config` of type `LocalRun`, only `DockerRun` is supported
I had registered the flow and previously used the flow on LocalRun, now all of a sudden it's failing but it was working a few hours ago?Kevin Kho
Marko Herkaliuk
07/08/2021, 8:59 AMRunConfig objects define where and how a flow run should be executed. Each RunConfig type has a corresponding Prefect Agent (i.e. LocalRun pairs with a Local Agent, DockerRun pairs with a Docker Agent, ...).
You use different labels for Flows?Joseph Loss
07/08/2021, 1:56 PMFlow: "Joe's Flow"
Labels: "development"
Agent: "Local Agent"
Labels: "development"
Agent: "Docker Agent"
Labels: ["development", "docker"]
because "development" is one of the labels in the docker agent, that is why it was picked up by the docker agent - is that correct?Mariia Kerimova
07/09/2021, 2:29 PM