In development, it's a bit of a hassle to run the celeryd
as well as the Django development server. Is it possible to, for example, ask celery
to run tasks synchronously during development? Or something similar?
views:
49answers:
1
+2
A:
Yes you can do this by setting CELERY_ALWAYS_EAGER = True
in your settings.
http://ask.github.com/celery/configuration.html#celery-always-eager
Mark Lavin
2010-10-06 17:50:00