diff options
author | chris meyers <chris.meyers.fsu@gmail.com> | 2018-04-17 15:14:56 +0200 |
---|---|---|
committer | chris meyers <chris.meyers.fsu@gmail.com> | 2018-04-20 19:04:36 +0200 |
commit | a56771c8f0bff8831f8968fba258cb74ba04bb5f (patch) | |
tree | 21252a5930b87d35958e2a9d466c7d44c9571f3e /Makefile | |
parent | Merge pull request #1421 from mabashian/692-broken-jt-workflow-form (diff) | |
download | awx-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |