mirror of
https://github.com/ansible/awx.git
synced 2026-03-01 00:38:45 -03:30
scheduler messages need not be durable
This commit is contained in:
@@ -343,7 +343,7 @@ CELERY_IMPORTS = ('awx.main.scheduler.tasks',)
|
|||||||
CELERY_QUEUES = (
|
CELERY_QUEUES = (
|
||||||
Queue('default', Exchange('default'), routing_key='default'),
|
Queue('default', Exchange('default'), routing_key='default'),
|
||||||
Queue('jobs', Exchange('jobs'), routing_key='jobs'),
|
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
|
# Projects use a fanout queue, this isn't super well supported
|
||||||
Broadcast('projects'),
|
Broadcast('projects'),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user