From 4b9059388e603e32f5448fd73e5e4a2d7920f92d Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 21 Mar 2014 14:43:52 -0400 Subject: [PATCH] Switch to using a network socket instead of an ipc socket, closes issue AC-1088 --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index ef22e34a0c..3a75da2f48 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -349,7 +349,7 @@ else: CALLBACK_CONSUMER_PORT = "tcp://127.0.0.1:5556" CALLBACK_QUEUE_PORT = "ipc:///tmp/callback_receiver.ipc" -TASK_COMMAND_PORT = "ipc:///tmp/task_command_receiver.ipc" +TASK_COMMAND_PORT = "tcp://127.0.0.1:6556" # Logging configuration. LOGGING = {