Repository: ambari
Updated Branches:
  refs/heads/branch-2.2 426894805 -> 78eafc7b4


AMBARI-15389. Intermittent YARN service check failures during and post EU 
(alexantonenko)


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

Branch: refs/heads/branch-2.2
Commit: 78eafc7b4a7b189ef895fad1e500d84d30c4c0c4
Parents: 4268948
Author: Alex Antonenko <[email protected]>
Authored: Thu Mar 31 15:08:58 2016 +0300
Committer: Alex Antonenko <[email protected]>
Committed: Thu Mar 31 17:41:48 2016 +0300

----------------------------------------------------------------------
 ambari-web/app/utils/configs/config_property_helper.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/78eafc7b/ambari-web/app/utils/configs/config_property_helper.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/configs/config_property_helper.js 
b/ambari-web/app/utils/configs/config_property_helper.js
index cb1f66b..ba702f9 100644
--- a/ambari-web/app/utils/configs/config_property_helper.js
+++ b/ambari-web/app/utils/configs/config_property_helper.js
@@ -17,7 +17,7 @@
  */
 
 var App = require('app');
-var stringUtils = require('utils/string_utils')
+var stringUtils = require('utils/string_utils');
 
 module.exports = {
 
@@ -415,7 +415,7 @@ module.exports = {
       mountPointsPerHost = mountPointsPerHost.filter(function (mPoint) {
         return !(['/', '/home'].contains(mPoint.mountpoint)
           || ['/etc/resolv.conf', '/etc/hostname', 
'/etc/hosts'].contains(mPoint.mountpoint) // docker specific mount points
-          || mPoint.mountpoint && (mPoint.mountpoint.startsWith('/boot') || 
mPoint.mountpoint.startsWith('/mnt'))
+          || mPoint.mountpoint && (mPoint.mountpoint.startsWith('/boot') || 
mPoint.mountpoint.startsWith('/mnt') || mPoint.mountpoint.startsWith('/tmp'))
           || ['devtmpfs', 'tmpfs', 'vboxsf', 'CDFS'].contains(mPoint.type)
           || mPoint.available == 0);
       });

Reply via email to