You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ao...@apache.org on 2018/06/05 09:04:58 UTC

[ambari] branch trunk updated: AMBARI-24034. Even though REST call to start Timeline Server was issued, start command was never sent to ambari-agent (aonishuk)

This is an automated email from the ASF dual-hosted git repository.

aonishuk pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new aa134db  AMBARI-24034. Even though REST call to start Timeline Server was issued, start command was never sent to ambari-agent (aonishuk)
aa134db is described below

commit aa134dbd418e3f7e7df858726772605bf073f940
Author: Andrew Onishuk <ao...@hortonworks.com>
AuthorDate: Tue Jun 5 10:09:51 2018 +0300

    AMBARI-24034. Even though REST call to start Timeline Server was issued, start command was never sent to ambari-agent (aonishuk)
---
 .../apache/ambari/server/agent/stomp/dto/ComponentStatusReport.java    | 3 +--
 .../java/org/apache/ambari/server/agent/stomp/dto/MetadataCluster.java | 3 ---
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/ComponentStatusReport.java b/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/ComponentStatusReport.java
index b430510..ac04b09 100644
--- a/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/ComponentStatusReport.java
+++ b/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/ComponentStatusReport.java
@@ -77,8 +77,7 @@ public class ComponentStatusReport {
   }
 
   public enum CommandStatusCommand {
-    STATUS,
-    SECURITY_STATUS
+    STATUS
   }
 
 }
diff --git a/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/MetadataCluster.java b/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/MetadataCluster.java
index 5619adc..6e1e9b8 100644
--- a/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/MetadataCluster.java
+++ b/ambari-server/src/main/java/org/apache/ambari/server/agent/stomp/dto/MetadataCluster.java
@@ -47,9 +47,6 @@ public class MetadataCluster {
     this.statusCommandsToRun  = new HashSet<>();
     if (securityType != null) {
       this.statusCommandsToRun.add("STATUS");
-      if (SecurityType.KERBEROS.equals(securityType)) {
-        this.statusCommandsToRun.add("SECURITY_STATUS");
-      }
     }
     this.fullServiceLevelMetadata = fullServiceLevelMetadata;
     this.serviceLevelParams = serviceLevelParams;

-- 
To stop receiving notification emails like this one, please contact
aonishuk@apache.org.