add missing queue

This commit is contained in:
Stephen Coady 2019-12-13 10:21:47 +00:00 committed by Pierre-Yves Chibon
parent c9355212c6
commit 5bcc065c54

View file

@ -289,7 +289,7 @@ items:
{% if env == "staging" %}
image: bodhi-base-prebuilt:staging
command: ["/usr/bin/celery"]
args: ["worker", "-A", "bodhi.server.tasks.app", "-l", "info", "-Q"]
args: ["worker", "-A", "bodhi.server.tasks.app", "-l", "info", "-Q", "celery"]
{% else %}
image: bodhi-celery:latest
{% endif %}
@ -392,7 +392,7 @@ items:
{% if env == "staging" %}
image: bodhi-base-prebuilt:staging
command: [" /usr/bin/celery"]
args: ["beat", "-A", "bodhi.server.tasks.app", "-l", "info", "-Q"]
args: ["beat", "-A", "bodhi.server.tasks.app", "-l", "info", "-Q", "celery"]
{% else %}
image: bodhi-celery-beat:latest
{% endif %}