Skip to content

Commit

Permalink
Fix arg order for Celery 5.x
Browse files Browse the repository at this point in the history
fixes #56
  • Loading branch information
copelco committed Feb 11, 2022
1 parent 4f37830 commit f1c9330
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions defaults/main.yml
Expand Up @@ -153,14 +153,14 @@ k8s_worker_celery_app: ""
k8s_worker_command:
- celery
- --app={{ k8s_worker_celery_app }}
- worker
- --workdir=/code
- worker
- --loglevel=info
k8s_worker_beat_command:
- celery
- --app={{ k8s_worker_celery_app }}
- beat
- --workdir=/code
- beat
- --loglevel=info
- --pidfile=/data/beat.pid
- --schedule=/data/schedulefile.db
Expand Down

0 comments on commit f1c9330

Please sign in to comment.