feat: correctly delete applications using Celery workers (#5787)

This commit is contained in:
Charles Zhou
2024-07-01 01:21:17 -05:00
committed by GitHub
parent 5692f9b33b
commit cb09dbef66
11 changed files with 158 additions and 60 deletions

View File

@@ -66,7 +66,7 @@
10. If you need to debug local async processing, please start the worker service.
```bash
poetry run python -m celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace
poetry run python -m celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace,app_deletion
```
The started celery app handles the async tasks, e.g. dataset importing and documents indexing.