You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2014/04/24 23:02:10 UTC

[1/2] git commit: AMBARI-5559 - Start Hadoop Cluster Service for YARN never finishes successfully

Repository: ambari
Updated Branches:
  refs/heads/trunk 5465578c6 -> 02b2cb8b9


AMBARI-5559 - Start Hadoop Cluster Service for YARN never finishes successfully


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

Branch: refs/heads/trunk
Commit: 6de58738895236b9e5c397baec1d032fd2205e1b
Parents: 5465578
Author: Artem Baranchuk <ab...@hortonworks.com>
Authored: Thu Apr 24 18:19:24 2014 +0300
Committer: Artem Baranchuk <ab...@hortonworks.com>
Committed: Fri Apr 25 00:01:35 2014 +0300

----------------------------------------------------------------------
 .../src/main/java/org/apache/ambari/msi/ClusterDefinition.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/6de58738/contrib/ambari-scom/ambari-scom-server/src/main/java/org/apache/ambari/msi/ClusterDefinition.java
----------------------------------------------------------------------
diff --git a/contrib/ambari-scom/ambari-scom-server/src/main/java/org/apache/ambari/msi/ClusterDefinition.java b/contrib/ambari-scom/ambari-scom-server/src/main/java/org/apache/ambari/msi/ClusterDefinition.java
index d483ff8..38e487c 100644
--- a/contrib/ambari-scom/ambari-scom-server/src/main/java/org/apache/ambari/msi/ClusterDefinition.java
+++ b/contrib/ambari-scom/ambari-scom-server/src/main/java/org/apache/ambari/msi/ClusterDefinition.java
@@ -376,7 +376,7 @@ public class ClusterDefinition {
             Set<String> componentNames = entry.getValue();
 
             for (String componentName : componentNames) {
-              if(state.equals(getHostComponentState(hostName, componentName))) continue;
+              if(isClientOnlyComponent(componentName) || state.equals(getHostComponentState(hostName, componentName))) continue;
               requestId = recordProcess(stateProvider.setRunningState(hostName, componentName, s), requestId,
                       "Set service " + serviceName + " state to " + s);
             }


[2/2] git commit: AMBARI-5567 - Setup CI for SCOM 2.0

Posted by ab...@apache.org.
AMBARI-5567 - Setup CI for SCOM 2.0


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

Branch: refs/heads/trunk
Commit: 02b2cb8b9fefd79be4ba2c2bdefe14c07eaeda95
Parents: 6de5873
Author: Artem Baranchuk <ab...@hortonworks.com>
Authored: Thu Apr 24 23:35:52 2014 +0300
Committer: Artem Baranchuk <ab...@hortonworks.com>
Committed: Fri Apr 25 00:01:36 2014 +0300

----------------------------------------------------------------------
 contrib/ambari-scom/pom.xml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/02b2cb8b/contrib/ambari-scom/pom.xml
----------------------------------------------------------------------
diff --git a/contrib/ambari-scom/pom.xml b/contrib/ambari-scom/pom.xml
index fce3ed2..0687e19 100644
--- a/contrib/ambari-scom/pom.xml
+++ b/contrib/ambari-scom/pom.xml
@@ -62,6 +62,7 @@
                         <exclude>**/*.snk</exclude>
                         <exclude>**/*.cs</exclude>
                         <exclude>**/*.json</exclude>
+                        <exclude>**/*.sln</exclude>
                     </excludes>
                 </configuration>
                 <executions>