summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorchris meyers <chris.meyers.fsu@gmail.com>2018-04-17 15:14:56 +0200
committerchris meyers <chris.meyers.fsu@gmail.com>2018-04-20 19:04:36 +0200
commita56771c8f0bff8831f8968fba258cb74ba04bb5f (patch)
tree21252a5930b87d35958e2a9d466c7d44c9571f3e /Makefile
parentMerge pull request #1421 from mabashian/692-broken-jt-workflow-form (diff)
downloadawx-a56771c8f0bff8831f8968fba258cb74ba04bb5f.tar.xz
awx-a56771c8f0bff8831f8968fba258cb74ba04bb5f.zip
send all tower work to a user-hidden queue
* Before, we had a special group, tower, that ran any async work that tower needed done. This allowed users fine grain control over which nodes did background work. However, this granularity was too complicated for users. So now, all tower system work goes to a special non-user exposed celery queue. Tower remains the fallback instance group to execute jobs on. The tower group will be created upon install and protected from deletion.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3dd2ecad8..811c92796c 100644
--- a/Makefile
+++ b/Makefile
@@ -323,7 +323,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) -n celery@$(COMPOSE_HOST) --pidfile /tmp/celery_pid
+ celery worker -A awx -l DEBUG -B -Ofair --autoscale=100,4 --schedule=$(CELERY_SCHEDULE_FILE) --pidfile /tmp/celery_pid
# Run to start the zeromq callback receiver
receiver: