Repository: ambari Updated Branches: refs/heads/branch-2.5 cbeb5b7b8 -> c85e8ed6d
AMBARI-20419. Add a property to enable Status commands on separate process (non-default). Default=disabled. Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c85e8ed6 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c85e8ed6 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c85e8ed6 Branch: refs/heads/branch-2.5 Commit: c85e8ed6dd617a6a36ebfe50a2ca89e6e1e3913e Parents: cbeb5b7 Author: Siddharth Wagle <[email protected]> Authored: Thu Mar 16 14:32:29 2017 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Thu Mar 16 14:32:29 2017 -0700 ---------------------------------------------------------------------- ambari-agent/src/main/python/ambari_agent/AmbariConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/c85e8ed6/ambari-agent/src/main/python/ambari_agent/AmbariConfig.py ---------------------------------------------------------------------- diff --git a/ambari-agent/src/main/python/ambari_agent/AmbariConfig.py b/ambari-agent/src/main/python/ambari_agent/AmbariConfig.py index 2fafa3b..11cf101 100644 --- a/ambari-agent/src/main/python/ambari_agent/AmbariConfig.py +++ b/ambari-agent/src/main/python/ambari_agent/AmbariConfig.py @@ -293,7 +293,7 @@ class AmbariConfig: return int(self.get('agent', 'parallel_execution', 0)) def get_multiprocess_status_commands_executor_enabled(self): - return bool(int(self.get('agent', 'multiprocess_status_commands_executor_enabled', 1))) + return bool(int(self.get('agent', 'multiprocess_status_commands_executor_enabled', 0))) def update_configuration_from_registration(self, reg_resp): if reg_resp and AmbariConfig.AMBARI_PROPERTIES_CATEGORY in reg_resp:
