Gregory Hunt
09/29/2023, 3:25 PMInfrastructure returned without reporting flow run 'ae92eb90-d347-4c4d-b15b-ad4cbf3b5466' as started or raising an error. This behavior is not expected and generally indicates improper implementation of infrastructure. The flow run will not be marked as failed, but an issue may have occurred.
I am returning a 0 status_code and an identifier, so I can't figure out what is triggering thisalex
09/29/2023, 3:28 PMrun
method for a worker receives a task_status
argument. Once the worker has spun up the appropriate infrastructure, it should call task_status.started(infra_pid)
where infra_pid
is an identified for the infrastructure created by the worker (e.g. Cloud Run job name, Kubernetes job ID, etc). The infra_pid
is stored on the server so it can be used to tear down infrastructure if the flow run is canceled.Gregory Hunt
09/29/2023, 3:29 PMGregory Hunt
09/29/2023, 3:32 PMGregory Hunt
09/29/2023, 3:33 PMalex
09/29/2023, 3:35 PM