You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by nc...@apache.org on 2017/01/27 18:17:35 UTC

[24/49] ambari git commit: AMBARI-19706. Slider Client Install failed (aonishuk)

AMBARI-19706. Slider Client Install failed (aonishuk)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/e7e4cb20
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/e7e4cb20
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/e7e4cb20

Branch: refs/heads/branch-dev-patch-upgrade
Commit: e7e4cb2064276756d4e9831c376e686a5d19eb09
Parents: b92b5f5
Author: Andrew Onishuk <ao...@hortonworks.com>
Authored: Thu Jan 26 19:06:30 2017 +0200
Committer: Andrew Onishuk <ao...@hortonworks.com>
Committed: Thu Jan 26 19:06:30 2017 +0200

----------------------------------------------------------------------
 ambari-agent/src/main/python/ambari_agent/PythonExecutor.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/e7e4cb20/ambari-agent/src/main/python/ambari_agent/PythonExecutor.py
----------------------------------------------------------------------
diff --git a/ambari-agent/src/main/python/ambari_agent/PythonExecutor.py b/ambari-agent/src/main/python/ambari_agent/PythonExecutor.py
index dfe361a..5a896ff 100644
--- a/ambari-agent/src/main/python/ambari_agent/PythonExecutor.py
+++ b/ambari-agent/src/main/python/ambari_agent/PythonExecutor.py
@@ -130,7 +130,7 @@ class PythonExecutor(object):
     if OSCheck.is_windows_family():
       cmd_list = ["WMIC path win32_process get Caption,Processid,Commandline", "netstat -an"]
     else:
-      cmd_list = ["ps faux", "netstat -tulpn"]
+      cmd_list = ["export COLUMNS=9999 ; ps faux", "netstat -tulpn"]
 
     shell_runner = shellRunner()