Updated Branches: refs/heads/trunk e676819f5 -> 733f8f910
AMBARI-3547 Can't delete host when heartbeating is lost. (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/733f8f91 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/733f8f91 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/733f8f91 Branch: refs/heads/trunk Commit: 733f8f910a619c00e9cedde6fb9bfd3ef10621cd Parents: e676819 Author: aBabiichuk <[email protected]> Authored: Fri Oct 18 18:12:10 2013 +0300 Committer: aBabiichuk <[email protected]> Committed: Fri Oct 18 18:14:34 2013 +0300 ---------------------------------------------------------------------- ambari-web/app/controllers/main/host/details.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/733f8f91/ambari-web/app/controllers/main/host/details.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/host/details.js b/ambari-web/app/controllers/main/host/details.js index 9cc852c..0de20d6 100644 --- a/ambari-web/app/controllers/main/host/details.js +++ b/ambari-web/app/controllers/main/host/details.js @@ -679,7 +679,8 @@ App.MainHostDetailsController = Em.Controller.extend({ } var stoppedStates = [App.HostComponentStatus.stopped, App.HostComponentStatus.install_failed, - App.HostComponentStatus.upgrade_failed]; + App.HostComponentStatus.upgrade_failed, + App.HostComponentStatus.unknown]; var masterComponents = []; var runningComponents = []; var unknownComponents = [];
