Skip to content

Commit 4684609

Browse files
authored
feat: fix celery docker filer (#1413)
1 parent 2d052b1 commit 4684609

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/start-celery-beat.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -o nounset
55

66

77
rm -f './celerybeat.pid'
8-
exec watchfiles celery.__main__.main --args '-A config.celery beat -l INFO'
8+
exec celery -A config.celery beat -l INFO

scripts/start-celery-flower.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
set -o errexit
44
set -o nounset
55

6-
exec watchfiles celery.__main__.main \
7-
--args \
8-
"-A config.celery flower --basic_auth=\"${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}\""
6+
exec celery -A config.celery flower --basic_auth="${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}"

0 commit comments

Comments
 (0)