Add states.SERVICING and SERVICEWAIT to _FASTTRACK_HEARTBEAT_ALLOWED

Currently, service steps may fail to start in scenarios dependent on IPA
fasttrack. This change attempts to resolve this by incorporating
servicing states in the fast track allowed states whitelist while also
making _FASTTRACK_HEARTBEAT_ALLOWED a superset of _HEARTBEAT_ALLOWED
instead of duplicating values in the two constants.

Change-Id: I47984469c1432e7fc7b4f1494b9f6c551c34672f
This commit is contained in:
Jacob Anders 2024-04-10 11:16:57 +10:00
parent 70ccb6af11
commit 619e1ac80c
2 changed files with 9 additions and 5 deletions

View File

@ -98,11 +98,9 @@ _HEARTBEAT_ALLOWED = (states.DEPLOYWAIT, states.CLEANWAIT, states.RESCUEWAIT,
states.SERVICEWAIT, states.SERVICEHOLD)
HEARTBEAT_ALLOWED = frozenset(_HEARTBEAT_ALLOWED)
_FASTTRACK_HEARTBEAT_ALLOWED = (states.DEPLOYWAIT, states.CLEANWAIT,
states.RESCUEWAIT, states.ENROLL,
states.MANAGEABLE, states.AVAILABLE,
states.DEPLOYING, states.CLEANHOLD,
states.DEPLOYHOLD, states.SERVICEHOLD)
_FASTTRACK_HEARTBEAT_ALLOWED = _HEARTBEAT_ALLOWED + (states.MANAGEABLE,
states.AVAILABLE,
states.ENROLL)
FASTTRACK_HEARTBEAT_ALLOWED = frozenset(_FASTTRACK_HEARTBEAT_ALLOWED)

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes the issue of service steps not starting due to servicing states
(states.SERVICING and states.SERVICEWAIT) missing from
_FASTTRACK_HEARTBEAT_ALLOWED constant.