Answer the question
In order to leave comments, you need to log in
Celery: how to get a list of tasks waiting for their turn to be executed?
Colleagues, tell me how to get a list of tasks waiting for their turn to be executed?
Tasks that are currently running can be found next. way:
from celery.task.control import inspect
i = inspect()
i.active()
from celery.task.control import inspect
i = inspect()
i.scheduled() # => {u'[email protected]': []}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question