Hi,
I am using prefect cloud 2.
In a windows virtual machine I have created a venv,
in which I launch the following operation to start a worker:
‘’’
set VIRTUAL_ENV=C:\PREFECT_GITHUB\venv
set PATH=%VIRTUAL_ENV%\Scripts;%PATH%
prefect cloud login -k ** --workspace prometeia/production
prefect config set PREFECT_API_URL= "****"
prefect worker start --pool "workpool-production"
‘’’
the created workpool is of type process.
When the worker starts it gives the following error
‘’’
| ERROR | GlobalEventLoopThread | prefect._internal.concurrency - Service ‘EventsWorker’ failed with 1 pending items.
‘’’
from a discord report i read it was a python certification issue, but even with pip install --upgrade certifi it worked
does anyone know anything? do you know how to help me?