From fb5b197de7ff02ef6c6d7002b30612367764a830 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Fri, 23 Sep 2016 17:18:45 +0100 Subject: [PATCH 1/2] Disable pipelining in ansible.cfg It's causing too many problems at the moment, we should return to it later. --- ansible/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 62a1ef2cb..84133a39d 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -28,4 +28,4 @@ callback_whitelist = profile_tasks # Performance options [ssh_connection] -pipelining = True +#pipelining = True From 65df296c6f613754b1c1aacee720662fbe87937d Mon Sep 17 00:00:00 2001 From: Simon Li Date: Mon, 26 Sep 2016 11:33:15 +0100 Subject: [PATCH 2/2] Disable profile_tasks in ansible.cfg It's useful but adds unnecessary output which obscure the final status. Should be enabled manually when required. --- ansible/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 84133a39d..13713688d 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -24,7 +24,7 @@ retry_files_enabled = False inventory_ignore_extensions = ~, .orig, .bak, .ini, .retry, .pyc, .pyo, .html, .omero, .gif, .png, .js, .md # Helps determine what's running slowly -callback_whitelist = profile_tasks +#callback_whitelist = profile_tasks # Performance options [ssh_connection]