git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1484529 13f79535-47bb-0310-9956-ffa450edef68
@@ -867,6 +867,10 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-2164. START_FAILED and STOP_FAILED no longer exist, the upgrade
+ script should repair hostcomponentstate table to convert these to i
+ INSTALLED. (smohanty)
+
AMBARI-2156. zookeeper service check fails when zk client is not co-hosted
with zk server. (jaimin)
@@ -76,3 +76,6 @@ insert into ambari.metainfo(metainfo_key, metainfo_value)
select 'version','1.3.0';
COMMIT;
+UPDATE ambari.hostcomponentstate SET current_state = 'INSTALLED' WHERE current_state like 'STOP_FAILED';
+UPDATE ambari.hostcomponentstate SET current_state = 'INSTALLED' WHERE current_state like 'START_FAILED';