diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 174824d8d3..fc108b26ea 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -737,9 +737,7 @@ ACTIVITY_STREAM_ENABLED_FOR_INVENTORY_SYNC = False # Internal API URL for use by inventory scripts and callback plugin. INTERNAL_API_URL = 'http://127.0.0.1:%s' % DEVSERVER_DEFAULT_PORT -# ZeroMQ callback settings. -CALLBACK_CONSUMER_PORT = "tcp://127.0.0.1:5556" -CALLBACK_QUEUE_PORT = "ipc:///tmp/callback_receiver.ipc" +CALLBACK_QUEUE = "callback_tasks" TASK_COMMAND_PORT = 6559 diff --git a/awx/settings/development.py b/awx/settings/development.py index 2140d2a856..18072e6bc6 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -36,11 +36,6 @@ TEMPLATE_LOADERS = ( if 'celeryd' in sys.argv: SQL_DEBUG = False -# Use a different callback consumer/queue for development, to avoid a conflict -# if there is also a nightly install running on the development machine. -CALLBACK_CONSUMER_PORT = "tcp://127.0.0.1:5557" -CALLBACK_QUEUE_PORT = "ipc:///tmp/callback_receiver_dev.ipc" - CALLBACK_QUEUE = "callback_tasks" # Enable PROOT for tower-qa integration tests