You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by at...@apache.org on 2013/11/08 16:36:12 UTC

git commit: AMBARI-3724 Incorrect host status when slave down. (atkach)

Updated Branches:
  refs/heads/trunk 79691bccd -> e508fdb4e


AMBARI-3724 Incorrect host status when slave down. (atkach)


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

Branch: refs/heads/trunk
Commit: e508fdb4e850db0e25b4304301ee6269affc3140
Parents: 79691bc
Author: atkach <an...@gmail.com>
Authored: Fri Nov 8 17:36:04 2013 +0200
Committer: atkach <an...@gmail.com>
Committed: Fri Nov 8 17:36:04 2013 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/e508fdb4/ambari-web/app/models/host.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/models/host.js b/ambari-web/app/models/host.js
index b1d6002..6c04d2a 100644
--- a/ambari-web/app/models/host.js
+++ b/ambari-web/app/models/host.js
@@ -133,7 +133,7 @@ App.Host = DS.Model.extend({
       'UNKNOWN': 'health-status-DEAD-YELLOW',
       'HEALTHY': 'health-status-LIVE',
       'UNHEALTHY': 'health-status-DEAD-RED',
-      'ALERT ': 'health-status-DEAD-ORANGE'
+      'ALERT': 'health-status-DEAD-ORANGE'
     };
     return statusMap[this.get('healthStatus')] || 'health-status-DEAD-YELLOW';
   }.property('healthStatus'),