Browse Source
🐛 Fix Celery worker command (#443)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
pull/13907/head
Oskar Bechtold
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/backend/app/worker-start.sh
|
|
@ -3,4 +3,4 @@ set -e |
|
|
|
|
|
|
|
python /app/app/celeryworker_pre_start.py |
|
|
|
|
|
|
|
celery worker -A app.worker -l info -Q main-queue -c 1 |
|
|
|
celery -A app.worker worker -l info -Q main-queue -c 1 |
|
|
|