You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2015/10/21 19:01:30 UTC

[1/3] ambari git commit: AMBARI-13502. Blank Tez View page is displayed if ResourceManagers are down

Repository: ambari
Updated Branches:
  refs/heads/branch-2.1 176ef8a43 -> be795331d


AMBARI-13502. Blank Tez View page is displayed if ResourceManagers are down


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

Branch: refs/heads/branch-2.1
Commit: be795331df502f96c593697627b0b0059b7dd44d
Parents: 7b949cb
Author: Alex Antonenko <hi...@gmail.com>
Authored: Wed Oct 21 19:18:21 2015 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Wed Oct 21 20:01:22 2015 +0300

----------------------------------------------------------------------
 .../tez/src/main/resources/ui/scripts/init-ambari-view.js      | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/be795331/contrib/views/tez/src/main/resources/ui/scripts/init-ambari-view.js
----------------------------------------------------------------------
diff --git a/contrib/views/tez/src/main/resources/ui/scripts/init-ambari-view.js b/contrib/views/tez/src/main/resources/ui/scripts/init-ambari-view.js
index 615c727..bd2e9a6 100644
--- a/contrib/views/tez/src/main/resources/ui/scripts/init-ambari-view.js
+++ b/contrib/views/tez/src/main/resources/ui/scripts/init-ambari-view.js
@@ -161,7 +161,7 @@ App.Helpers.ambari = (function () {
         context: this,
         url: getURL(),
         success: this.getInstanceParametersSuccessCallback,
-        error: this.getInstanceParametersErrorCallback,
+        error: this.getInstanceParametersErrorCallback
       });
     },
 
@@ -180,7 +180,9 @@ App.Helpers.ambari = (function () {
      * @method getInstanceParametersErrorCallback
      */
     getInstanceParametersErrorCallback: function (request, ajaxOptions, error) {
-      Ember.assert('Ambari instance parameter fetch failed: ' + error);
+      var message = 'Ambari instance parameter fetch failed: ' + error;
+      App.Helpers.ErrorBar.getInstance().show(message);
+      Ember.assert(message);
     }
   };
 


[3/3] ambari git commit: AMBARI-13500. "Hadoop Group" is absent on Customize Services -> Misc tab

Posted by al...@apache.org.
AMBARI-13500. "Hadoop Group" is absent on Customize Services -> Misc tab


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

Branch: refs/heads/branch-2.1
Commit: 9fbe904fa1f3fd12e03008d87d61ca8be175cf78
Parents: 176ef8a
Author: Alex Antonenko <hi...@gmail.com>
Authored: Wed Oct 21 19:00:13 2015 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Wed Oct 21 20:01:22 2015 +0300

----------------------------------------------------------------------
 .../resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml    | 4 ++--
 .../resources/stacks/HDP/2.0.6/configuration/cluster-env.xml     | 2 +-
 .../resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml    | 2 +-
 .../stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml    | 4 ++--
 .../HDP/0.2/services/HDFS/configuration/hadoop-env.xml           | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/9fbe904f/ambari-server/src/main/resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml b/ambari-server/src/main/resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml
index b935a1a..c87df1b 100644
--- a/ambari-server/src/main/resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml
+++ b/ambari-server/src/main/resources/stacks/BIGTOP/0.8/configuration/cluster-env.xml
@@ -53,9 +53,9 @@
     </property>
     <property>
         <name>user_group</name>
-        <display-name>User Group</display-name>
+        <display-name>Hadoop Group</display-name>
         <value>hadoop</value>
         <property-type>GROUP</property-type>
         <description>Hadoop user group.</description>
     </property>
-</configuration>
\ No newline at end of file
+</configuration>

http://git-wip-us.apache.org/repos/asf/ambari/blob/9fbe904f/ambari-server/src/main/resources/stacks/HDP/2.0.6/configuration/cluster-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/configuration/cluster-env.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/configuration/cluster-env.xml
index c66bc12..805aa29 100644
--- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/configuration/cluster-env.xml
+++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/configuration/cluster-env.xml
@@ -56,7 +56,7 @@
     </property>
     <property>
         <name>user_group</name>
-        <display-name>User Group</display-name>
+        <display-name>Hadoop Group</display-name>
         <value>hadoop</value>
         <property-type>GROUP</property-type>
         <description>Hadoop user group.</description>

http://git-wip-us.apache.org/repos/asf/ambari/blob/9fbe904f/ambari-server/src/main/resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml b/ambari-server/src/main/resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml
index 211795d..a4d8acc 100644
--- a/ambari-server/src/main/resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml
+++ b/ambari-server/src/main/resources/stacks/HDPWIN/2.1/configuration/cluster-env.xml
@@ -77,7 +77,7 @@
   </property>
   <property>
     <name>user_group</name>
-    <display-name>User Group</display-name>
+    <display-name>Hadoop Group</display-name>
     <value>hadoop</value>
     <property-type>GROUP</property-type>
     <description>Hadoop user group.</description>

http://git-wip-us.apache.org/repos/asf/ambari/blob/9fbe904f/ambari-server/src/test/resources/stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/test/resources/stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml b/ambari-server/src/test/resources/stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
index a074faf..26f90c8 100644
--- a/ambari-server/src/test/resources/stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
+++ b/ambari-server/src/test/resources/stacks/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
@@ -101,7 +101,7 @@
   </property>
   <property>
     <name>user_group</name>
-    <display-name>User Group</display-name>
+    <display-name>Hadoop Group</display-name>
     <value>hadoop</value>
     <description>Proxy user group.</description>
   </property>
@@ -224,4 +224,4 @@ export JAVA_LIBRARY_PATH=${JAVA_LIBRARY_PATH}:/usr/lib/hadoop/lib/native/Linux-a
     </value>
   </property>
   
-</configuration>
\ No newline at end of file
+</configuration>

http://git-wip-us.apache.org/repos/asf/ambari/blob/9fbe904f/ambari-server/src/test/resources/stacks_with_common_services/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/test/resources/stacks_with_common_services/HDP/0.2/services/HDFS/configuration/hadoop-env.xml b/ambari-server/src/test/resources/stacks_with_common_services/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
index f094233..4677e57 100644
--- a/ambari-server/src/test/resources/stacks_with_common_services/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
+++ b/ambari-server/src/test/resources/stacks_with_common_services/HDP/0.2/services/HDFS/configuration/hadoop-env.xml
@@ -100,7 +100,7 @@
   </property>
   <property>
     <name>user_group</name>
-    <display-name>User Group</display-name>
+    <display-name>Hadoop Group</display-name>
     <value>hadoop</value>
     <description>Proxy user group.</description>
   </property>
@@ -223,4 +223,4 @@ export JAVA_LIBRARY_PATH=${JAVA_LIBRARY_PATH}:/usr/lib/hadoop/lib/native/Linux-a
     </value>
   </property>
   
-</configuration>
\ No newline at end of file
+</configuration>


[2/3] ambari git commit: AMBARI-13501. Default cursor for export graph data dropdown menus

Posted by al...@apache.org.
AMBARI-13501. Default cursor for export graph data dropdown menus


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

Branch: refs/heads/branch-2.1
Commit: 7b949cb576ed8ce25c6dc63c7e57cda72c3917f4
Parents: 9fbe904
Author: Alex Antonenko <hi...@gmail.com>
Authored: Wed Oct 21 19:16:56 2015 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Wed Oct 21 20:01:22 2015 +0300

----------------------------------------------------------------------
 ambari-web/app/styles/common.less | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/7b949cb5/ambari-web/app/styles/common.less
----------------------------------------------------------------------
diff --git a/ambari-web/app/styles/common.less b/ambari-web/app/styles/common.less
index 60b7553..a0252d3 100644
--- a/ambari-web/app/styles/common.less
+++ b/ambari-web/app/styles/common.less
@@ -354,7 +354,10 @@
   top: 25px;
   min-width: 60px;
   font-size: 14px;
-  cursor: default;
+  cursor: auto;
+  a {
+    cursor: pointer;
+  }
 }
 
 .bootstrap-checkbox {