Merge "Add servicing to stuck states on recovery"

This commit is contained in:
Zuul 2025-03-13 15:48:45 +00:00 committed by Gerrit Code Review
commit 90f6132746
2 changed files with 7 additions and 1 deletions

View File

@ -276,7 +276,8 @@ UNSTABLE_STATES = (DEPLOYING, DEPLOYWAIT, CLEANING, CLEANWAIT, VERIFYING,
"""States that can be changed without external request."""
STUCK_STATES_TREATED_AS_FAIL = (DEPLOYING, CLEANING, VERIFYING, INSPECTING,
ADOPTING, RESCUING, UNRESCUING, DELETING)
ADOPTING, RESCUING, UNRESCUING, DELETING,
SERVICING)
"""States that cannot be resumed once a conductor dies.
If a node gets stuck with one of these states for some reason

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fix the issue that restart of conductor service can not recover
a node stuck at the ``servicing`` state.