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/01/28 02:45:49 UTC

git commit: AMBARI-4442: Summary page of Add Service wizard isn't informative if adding only Sqoop or Pig. (jaimin)

Updated Branches:
  refs/heads/trunk 5be57caff -> 7b9682f81


AMBARI-4442: Summary page of Add Service wizard isn't informative if adding only Sqoop or Pig. (jaimin)


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

Branch: refs/heads/trunk
Commit: 7b9682f81da8a8f0b23495022bcba5ab6c31d504
Parents: 5be57ca
Author: Jaimin Jetly <ja...@hortonworks.com>
Authored: Mon Jan 27 17:45:19 2014 -0800
Committer: Jaimin Jetly <ja...@hortonworks.com>
Committed: Mon Jan 27 17:45:25 2014 -0800

----------------------------------------------------------------------
 ambari-web/app/data/review_configs.js | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/7b9682f8/ambari-web/app/data/review_configs.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/data/review_configs.js b/ambari-web/app/data/review_configs.js
index c358114..acace78 100644
--- a/ambari-web/app/data/review_configs.js
+++ b/ambari-web/app/data/review_configs.js
@@ -304,8 +304,31 @@ module.exports = [
             isMaster: false
           })
         ]
+      }),
+      Ember.Object.create({
+        service_name: 'PIG',
+        display_name: 'Pig',
+        service_components: [
+          Ember.Object.create({
+            display_name: 'Clients',
+            component_name: 'CLIENT',
+            component_value: '',
+            isMaster: false
+          })
+        ]
+      }),
+      Ember.Object.create({
+        service_name: 'SQOOP',
+        display_name: 'Sqoop',
+        service_components: [
+          Ember.Object.create({
+            display_name: 'Clients',
+            component_name: 'CLIENT',
+            component_value: '',
+            isMaster: false
+          })
+        ]
       })
-
     ]
   }
 ];