Skip to content

Celery development

Fritz Lekschas edited this page Aug 28, 2015 · 3 revisions

Table of contents:

Syncing tasks

Running tasks in the same thread as the main process (normally it runs in a separate process) will make debugging much easier. You can tell Celery to run the task in sync by adding this setting to your settings: CELERY_ALWAYS_EAGER = True (source)