Moved Celery CLI commands to 'manage.py celery' submodule + added extensions:

Added a 'celery queue' command, which is supposed to show queued
Celery tasks (but doesn't work quite as I'd expect).

Added a 'celery purge' command, which purges queued Celery tasks.
This commit is contained in:
2017-06-06 15:05:18 +02:00
parent 5bde262ad7
commit d6506b6402
4 changed files with 65 additions and 21 deletions

View File

@@ -61,4 +61,6 @@ Pillar requires [Celery](http://www.celeryproject.org/) for background task proc
turn requires a backend and a broker, for which the default Pillar configuration uses Redis and
RabbitMQ.
You can run the Celery Worker using `manage.py operations worker`.
You can run the Celery Worker using `manage.py celery worker`.
Find other Celery operations with the `manage.py celery` command.