You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise ScriptError(user_exc=exc, path=path) from exc
prefect.exceptions.ScriptError: Script at '../prefect-docker-compose/client_docker/app/weather.py' encountered an exception: FileNotFoundError(2, 'No such file or directory')
Im calling weather.py to deploy the flow from somewhere else on host, why would prefect use host relative fs path to find the flow shouldnt it just use path argument and get_paris_weather (flow functions name) to get it? How to fix this?
The text was updated successfully, but these errors were encountered:
So agent and server is running locally, not inside the docker
I've updated
client_docker/Dockerfile
to thisThen changed
client_docker/app/weather.py
to thisWhen agent picks up this flow it throws
Im calling
weather.py
to deploy the flow from somewhere else on host, why would prefect use host relative fs path to find the flow shouldnt it just usepath
argument andget_paris_weather
(flow functions name) to get it? How to fix this?The text was updated successfully, but these errors were encountered: