To use celery with windows you need to install a separate concurrency pool because prefork is not supported under Windows (e.g. celery -A tasks.celery worker -Q celery -c2 --pool=gevent). See https://www.distributedpython.com/2018/08/21/celery-4-windows/
To use celery with windows you need to install a separate concurrency pool because prefork is not supported under Windows (e.g. celery -A tasks.celery worker -Q celery -c2 --pool=gevent). See https://www.distributedpython.com/2018/08/21/celery-4-windows/