You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2014/11/22 02:02:00 UTC

ambari git commit: AMBARI-8421. "New MySQL Database" hive database option should not be displayed for suse11.(jaimin)

Repository: ambari
Updated Branches:
  refs/heads/trunk 3dab802ce -> b5755a54d


AMBARI-8421. "New MySQL Database" hive database option should not be displayed for suse11.(jaimin)


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

Branch: refs/heads/trunk
Commit: b5755a54da02fd379bdb2d08a6af981229abb056
Parents: 3dab802
Author: Jaimin Jetly <ja...@hortonworks.com>
Authored: Fri Nov 21 17:01:36 2014 -0800
Committer: Jaimin Jetly <ja...@hortonworks.com>
Committed: Fri Nov 21 17:01:36 2014 -0800

----------------------------------------------------------------------
 ambari-web/app/utils/config.js                | 2 +-
 ambari-web/test/controllers/installer_test.js | 2 +-
 ambari-web/test/controllers/main_test.js      | 2 +-
 ambari-web/test/utils/config_test.js          | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/b5755a54/ambari-web/app/utils/config.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/utils/config.js b/ambari-web/app/utils/config.js
index 838d2cc..5b15dc1 100644
--- a/ambari-web/app/utils/config.js
+++ b/ambari-web/app/utils/config.js
@@ -53,7 +53,7 @@ App.config = Em.Object.create({
    * @returns {boolean}
    */
   isManagedMySQLForHiveAllowed: function (osType) {
-    var osList = ['redhat5', 'sles11'];
+    var osList = ['redhat5', 'suse11'];
     return !osList.contains(osType);
   },
 

http://git-wip-us.apache.org/repos/asf/ambari/blob/b5755a54/ambari-web/test/controllers/installer_test.js
----------------------------------------------------------------------
diff --git a/ambari-web/test/controllers/installer_test.js b/ambari-web/test/controllers/installer_test.js
index 7dcf8f0..958beab 100644
--- a/ambari-web/test/controllers/installer_test.js
+++ b/ambari-web/test/controllers/installer_test.js
@@ -53,7 +53,7 @@ describe('App.InstallerController', function () {
           expected: true
         },
         {
-          osType: 'sles11',
+          osType: 'suse11',
           expected: false
         }
       ],

http://git-wip-us.apache.org/repos/asf/ambari/blob/b5755a54/ambari-web/test/controllers/main_test.js
----------------------------------------------------------------------
diff --git a/ambari-web/test/controllers/main_test.js b/ambari-web/test/controllers/main_test.js
index 186c8f1..9b3b2f3 100644
--- a/ambari-web/test/controllers/main_test.js
+++ b/ambari-web/test/controllers/main_test.js
@@ -34,7 +34,7 @@ describe('App.InstallerController', function () {
           expected: true
         },
         {
-          osType: 'sles11',
+          osType: 'suse11',
           expected: false
         }
       ],

http://git-wip-us.apache.org/repos/asf/ambari/blob/b5755a54/ambari-web/test/utils/config_test.js
----------------------------------------------------------------------
diff --git a/ambari-web/test/utils/config_test.js b/ambari-web/test/utils/config_test.js
index b0a3396..4cefc7d 100644
--- a/ambari-web/test/utils/config_test.js
+++ b/ambari-web/test/utils/config_test.js
@@ -599,7 +599,7 @@ describe('App.config', function () {
         expected: true
       },
       {
-        osType: 'sles11',
+        osType: 'suse11',
         expected: false
       }
     ],