Skip to content

Commit 9f60a50

Browse files
authored
Concurency (single r) -> Concurrency (double r) (#835)
1 parent fa3fb89 commit 9f60a50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

{{ cookiecutter.name }}/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ENV _CELERY_APP=app.celery
8181
HEALTHCHECK --interval=15s --timeout=15s --start-period=5s --retries=3 \
8282
CMD celery --app=${_CELERY_APP} inspect ping --destination=celery@$HOSTNAME
8383

84-
CMD ["sh", "-c", "celery --app=${_CELERY_APP} worker --concurrency=${CONCURENCY:-2} --hostname=celery@%h --max-tasks-per-child=${MAX_REQUESTS_PER_CHILD:-50} --time-limit=${TIME_LIMIT:-900} --soft-time-limit=${SOFT_TIME_LIMIT:-45}"]
84+
CMD ["sh", "-c", "celery --app=${_CELERY_APP} worker --concurrency=${CONCURRENCY:-2} --hostname=celery@%h --max-tasks-per-child=${MAX_REQUESTS_PER_CHILD:-50} --time-limit=${TIME_LIMIT:-900} --soft-time-limit=${SOFT_TIME_LIMIT:-45}"]
8585

8686
#
8787
# scheduler image

0 commit comments

Comments
 (0)