mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 02:50:02 -03:30
scheduler messages need not be durable
This commit is contained in:
parent
89250dcf36
commit
d65120538d
@ -343,7 +343,7 @@ CELERY_IMPORTS = ('awx.main.scheduler.tasks',)
|
||||
CELERY_QUEUES = (
|
||||
Queue('default', Exchange('default'), routing_key='default'),
|
||||
Queue('jobs', Exchange('jobs'), routing_key='jobs'),
|
||||
Queue('scheduler', Exchange('scheduler', type='topic'), routing_key='scheduler.job.#'),
|
||||
Queue('scheduler', Exchange('scheduler', type='topic'), routing_key='scheduler.job.#', durable=False),
|
||||
# Projects use a fanout queue, this isn't super well supported
|
||||
Broadcast('projects'),
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user