Author: yusaku
Date: Fri Jan 11 02:44:39 2013
New Revision: 1431831
URL: http://svn.apache.org/viewvc?rev=1431831&view=rev
Log:
AMBARI-1143. tmpfs filesystem being added to the list in the dir used by
Ambari. (Arun Kandregula via yusaku)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-web/app/models/service_config.js
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1431831&r1=1431830&r2=1431831&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Jan 11 02:44:39 2013
@@ -675,6 +675,9 @@ AMBARI-666 branch (unreleased changes)
BUG FIXES
+ AMBARI-1143. tmpfs filesystem being added to the list in the dir used by
+ Ambari. (Arun Kandregula via yusaku)
+
AMBARI-1142. On Notification Popup, clicking "go to nagios UI" doesn't
load nagios UI. (Arun Kandregula via yusaku)
Modified: incubator/ambari/trunk/ambari-web/app/models/service_config.js
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/models/service_config.js?rev=1431831&r1=1431830&r2=1431831&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/models/service_config.js (original)
+++ incubator/ambari/trunk/ambari-web/app/models/service_config.js Fri Jan 11
02:44:39 2013
@@ -257,7 +257,7 @@ App.ServiceConfigProperty = Ember.Object
mountPointAsRoot = mountPointsPerHost.findProperty('mountpoint', '/');
mountPointsPerHost = mountPointsPerHost.filter(function (mPoint) {
- return !(['/', '/home', '/boot'].contains(mPoint.mountpoint) ||
['tmpfs', 'vboxsf'].contains(mPoint.type));
+ return !(['/', '/home', '/boot'].contains(mPoint.mountpoint) ||
['devtmpfs', 'tmpfs', 'vboxsf'].contains(mPoint.type));
});
mountPointsPerHost.forEach(function (mPoint) {