Improve fence output on failure and increase delay
This commit is contained in:
parent
e92a57606d
commit
33a963c2af
|
@ -124,7 +124,7 @@ def rebootViaIPMI(ipmi_hostname, ipmi_user, ipmi_password, logger):
|
||||||
)
|
)
|
||||||
ipmi_reset_retcode, ipmi_reset_stdout, ipmi_reset_stderr = common.run_os_command(ipmi_command_reset)
|
ipmi_reset_retcode, ipmi_reset_stdout, ipmi_reset_stderr = common.run_os_command(ipmi_command_reset)
|
||||||
|
|
||||||
time.sleep(0.5)
|
time.sleep(2)
|
||||||
|
|
||||||
# Ensure the node is powered on
|
# Ensure the node is powered on
|
||||||
ipmi_command_status = '/usr/bin/ipmitool -I lanplus -H {} -U {} -P {} chassis power status'.format(
|
ipmi_command_status = '/usr/bin/ipmitool -I lanplus -H {} -U {} -P {} chassis power status'.format(
|
||||||
|
@ -145,4 +145,5 @@ def rebootViaIPMI(ipmi_hostname, ipmi_user, ipmi_password, logger):
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
logger.out('Failed to reboot dead node', state='e')
|
logger.out('Failed to reboot dead node', state='e')
|
||||||
|
print(ipmi_reset_stderr)
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in New Issue