You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ak...@apache.org on 2015/09/18 19:56:06 UTC

ambari git commit: AMBARI-13151. Multiple Oozie Servers can be added with Install Wizard and ASW (akovalenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk ad20650cd -> 797e39737


AMBARI-13151. Multiple Oozie Servers can be added with Install Wizard and ASW (akovalenko)


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

Branch: refs/heads/trunk
Commit: 797e3973731e23356c012705855e5d8f08e31301
Parents: ad20650
Author: Aleksandr Kovalenko <ak...@hortonworks.com>
Authored: Fri Sep 18 20:32:46 2015 +0300
Committer: Aleksandr Kovalenko <ak...@hortonworks.com>
Committed: Fri Sep 18 20:32:46 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/models/stack_service_component.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/797e3973/ambari-web/app/models/stack_service_component.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/models/stack_service_component.js b/ambari-web/app/models/stack_service_component.js
index 32df014..f11b0a2 100644
--- a/ambari-web/app/models/stack_service_component.js
+++ b/ambari-web/app/models/stack_service_component.js
@@ -151,7 +151,7 @@ App.StackServiceComponent = DS.Model.extend({
    * @property {Boolean} isMasterAddableOnlyOnHA
    */
   isMasterAddableOnlyOnHA: function () {
-    return ['NAMENODE', 'RESOURCEMANAGER', 'RANGER_ADMIN'].contains(this.get('componentName'));
+    return ['NAMENODE', 'RESOURCEMANAGER', 'RANGER_ADMIN', 'OOZIE_SERVER'].contains(this.get('componentName'));
   }.property('componentName'),
 
   /** @property {Boolean} isHAComponentOnly - Components that can be installed only if HA enabled **/