Merge "Revert "major release state change exception handling""

This commit is contained in:
Zuul 2024-09-24 18:48:42 +00:00 committed by Gerrit Code Review
commit 1f0b341087

View File

@ -841,20 +841,7 @@ class SWMessageDeployStateChanged(messages.PatchMessage):
if self.deploy_state:
LOG.info("Received deploy state changed to %s, agent %s" %
(self.deploy_state, self.agent))
try:
sc.deploy_state_changed(self.deploy_state)
except Exception as e:
LOG.exception("Deploy state change failed: %s" % str(e))
# Error occurred while transitioning state to start-done
# so change it to start-failed
if self.deploy_state == DEPLOY_STATES.START_DONE:
sc.deploy_state_changed(DEPLOY_STATES.START_FAILED)
# Error occurred while transitioning state to activate-done
# so change it to activate-failed
if self.deploy_state == DEPLOY_STATES.ACTIVATE_DONE:
sc.deploy_state_changed(DEPLOY_STATES.ACTIVATE_FAILED)
else:
LOG.info("Received %s deploy host state changed to %s, agent %s" %
(self.hostname, self.host_state, self.agent))