1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-28 19:25:40 +03:00

adding initial channels integration

This commit is contained in:
Wayne Witzel III 2016-08-08 12:52:34 -04:00 committed by Jared Tabor
parent e4c5b9cb18
commit 1a9843d5d1
3 changed files with 4 additions and 3 deletions

View File

@ -373,7 +373,7 @@ CELERY_ROUTES = ({'awx.main.tasks.run_job': {'queue': 'jobs',
'routing_key': 'scheduler.job.launch'},
'awx.main.scheduler.tasks.run_job_complete': {'queue': 'scheduler',
'routing_key': 'scheduler.job.complete'},})
CELERYBEAT_SCHEDULE = {
'tower_scheduler': {
'task': 'awx.main.tasks.tower_periodic_scheduler',
@ -970,4 +970,3 @@ LOGGING = {
},
}
}

View File

@ -75,7 +75,7 @@ if is_testing(sys.argv):
},
}
}
MONGO_DB = 'system_tracking_test'
# Celery AMQP configuration.

View File

@ -134,3 +134,5 @@ wheel==0.24.0
wrapt==1.10.6
wsgiref==0.1.2
xmltodict==0.9.2
channels==0.17.1
asgi_redis==0.14.0