mirror of
https://github.com/ansible/awx.git
synced 2026-02-16 02:30:01 -03:30
Switch to using callback queue by default
* Fix an issue where we grab the wrong setting for the callback connection * Remove old ansible.cfg that we shipped with the setup playbook for centos 6
This commit is contained in:
@@ -48,7 +48,7 @@ class FifoQueue(object):
|
||||
class CallbackQueueDispatcher(object):
|
||||
|
||||
def __init__(self):
|
||||
self.callback_connection = getattr(settings, 'CALLBACK_CONNECTION', None)
|
||||
self.callback_connection = getattr(settings, 'BROKER_URL', None)
|
||||
self.connection_queue = getattr(settings, 'CALLBACK_QUEUE', '')
|
||||
self.connection = None
|
||||
self.exchange = None
|
||||
|
||||
Reference in New Issue
Block a user