remove uneeded celery configs

* Celery routes and queues are set and defined at runtime. Thus, a
static definition of routes and queues is not needed.
This commit is contained in:
chris meyers
2018-02-27 11:35:44 -05:00
parent fe05b4c0d5
commit e4470aa4cf
3 changed files with 2 additions and 5 deletions

View File

@@ -324,7 +324,7 @@ celeryd:
@if [ "$(VENV_BASE)" ]; then \
. $(VENV_BASE)/awx/bin/activate; \
fi; \
celery worker -A awx -l DEBUG -B -Ofair --autoscale=100,4 --schedule=$(CELERY_SCHEDULE_FILE) -Q tower_broadcast_all -n celery@$(COMPOSE_HOST) --pidfile /tmp/celery_pid
celery worker -A awx -l DEBUG -B -Ofair --autoscale=100,4 --schedule=$(CELERY_SCHEDULE_FILE) -n celery@$(COMPOSE_HOST) --pidfile /tmp/celery_pid
# Run to start the zeromq callback receiver
receiver: