ovirt_hosts: Fix failed_state after PM fence (#38102)
This commit is contained in:
parent
1c00a14c31
commit
477a602fdf
1 changed files with 2 additions and 2 deletions
|
@ -539,7 +539,7 @@ def main():
|
|||
action='fence',
|
||||
action_condition=lambda h: h.status == hoststate.DOWN,
|
||||
wait_condition=lambda h: h.status in [hoststate.UP, hoststate.MAINTENANCE],
|
||||
fail_condition=failed_state,
|
||||
fail_condition=hosts_module.failed_state_after_reinstall,
|
||||
fence_type='start',
|
||||
)
|
||||
elif state == 'stopped':
|
||||
|
@ -560,7 +560,7 @@ def main():
|
|||
ret = hosts_module.action(
|
||||
action='fence',
|
||||
wait_condition=lambda h: h.status == hoststate.UP,
|
||||
fail_condition=failed_state,
|
||||
fail_condition=hosts_module.failed_state_after_reinstall,
|
||||
fence_type='restart',
|
||||
)
|
||||
elif state == 'reinstalled':
|
||||
|
|
Loading…
Reference in a new issue