3

I used the following command to start a celery worker on Windows:

celery -A celery_worker.celery worker -l info

I got the following error:

ValueError: not enough values to unpack (expected 3, got 0)
davidism
  • 121,510
  • 29
  • 395
  • 339
Ramesh Ponnusamy
  • 1,553
  • 11
  • 22

1 Answers1

8
  1. Windows doesn't support the celery parallel processing.
  2. Adding --pool=solo is workaround to run the celery worker in windows.

celery -A celery_worker.celery worker --pool=solo -l info

Ramesh Ponnusamy
  • 1,553
  • 11
  • 22