Carlos Cueto
10/23/2023, 5:41 PM13:38:48.712 | ERROR | Flow run 'resilient-llama' - Flow could not be retrieved from deployment.
Traceback (most recent call last):
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\deployments\steps\core.py", line 124, in run_steps
step_output = await run_step(step, upstream_outputs)
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\deployments\steps\core.py", line 94, in run_step
step_func = _get_function_for_step(fqn, requires=keywords.get("requires"))
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\deployments\steps\core.py", line 58, in _get_function_for_step
subprocess.check_call(
File "C:\python39\lib\subprocess.py", line 368, in check_call
retcode = call(*popenargs, **kwargs)
File "C:\python39\lib\subprocess.py", line 349, in call
with Popen(*popenargs, **kwargs) as p:
File "C:\python39\lib\subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\python39\lib\subprocess.py", line 1420, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the file specified
alex
10/23/2023, 5:47 PMprefect-azure
to run your pull step. You can work around this by installing prefect-azure
on your worker before execution, but it’d be great if you opened an issue so we can fix the underlying issue!Carlos Cueto
10/23/2023, 8:10 PMprefect-azure
manually via pip before even starting up the worker.Carlos Cueto
10/23/2023, 11:35 PMprefect.yaml
file was not correct. However, I got passed that issue but now I'm getting the following:
19:33:49.261 | ERROR | Flow run 'diligent-jacamar' - Flow could not be retrieved from deployment.
Traceback (most recent call last):
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\deployments\steps\core.py", line 124, in run_steps
step_output = await run_step(step, upstream_outputs)
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\deployments\steps\core.py", line 95, in run_step
result = await from_async.call_soon_in_new_thread(
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\_internal\concurrency\calls.py", line 291, in aresult
return await asyncio.wrap_future(self.future)
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect\_internal\concurrency\calls.py", line 315, in _run_sync
result = self.fn(*self.args, **self.kwargs)
File "C:\python_scripts\Prefect2.0-Flows\venv2\lib\site-packages\prefect_azure\deployments\steps.py", line 189, in pull_from_azure_blob_storage
with open(target, "wb") as f:
PermissionError: [Errno 13] Permission denied: 'C:\\/Users/ccueto/AppData/Local/Temp/tmp93kebfv9prefect'
Any ideas?alex
10/24/2023, 2:05 PM