Reputation: 1111
Trying to follow celery tutorial: http://docs.celeryproject.org/en/latest/getting-started/next-steps.html
when i run
celery -A proj worker -l info
absolutely nothing happens in cmd console, no errors, no output. RabbitMQ is installed, service is running (windows 7, python 3.4.3)
How to fix?
Upvotes: 1
Views: 1869
Reputation: 638
I can not explain why but on windows it seems that using only one processor works :
celery -A proj worker -P solo -l debug
Upvotes: 1
Reputation: 1831
There is a currently an open bug issue with Celery in Windows 7 not showing results. Apparently it appeared after Celery 3.1.12 - perhaps you could downgrade until the issue is resolved.
Upvotes: 1