Skip to content

Commit

Permalink
New celery beat run command for supervisor (celery#6645)
Browse files Browse the repository at this point in the history
* Update extra/supervisord/celeryd.conf line 18

Adding compatibility with celery 5.0.6 which have different worker 'run' command

* Changes celery beat run command in supervisor's celerybeat.conf file
Due to new celery 5.0.5 syntax
  • Loading branch information
TiredFingers authored Feb 25, 2021
1 parent c86930d commit 34c4697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra/supervisord/celerybeat.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[program:celerybeat]
; Set full path to celery program if using virtualenv
command=celery beat -A myapp --schedule /var/lib/celery/beat.db --loglevel=INFO
command=celery -A myapp beat --schedule /var/lib/celery/beat.db --loglevel=INFO

; remove the -A myapp argument if you aren't using an app instance

Expand Down

0 comments on commit 34c4697

Please sign in to comment.