Fix iDRAC reset
The current code waits for 3 consecutive failed pings, each 10 seconds apart to determine that an iDRAC has gone down during an iDRAC reset. This is too long for some servers, as the iDRAC may come back up before the 3rd ping failure. This results in a failure to detect the iDRAC going down, which causes a timeout on the reset. This patch changes the code to wait for only 2 consecutive ping failures, which is what our highly tested downstream code does. Closes-Bug: 1816195 Change-Id: Iac21d5eb722834089cbe4a2e7e19370a951951f0 (cherry picked from commit e204c367ab118878aa5202e10d74c3c28de8ba21)
This commit is contained in:
parent
2a2a53ee24
commit
68cbf5a06e
@ -272,7 +272,7 @@ class DRACClient(object):
|
||||
state_reached = self._wait_for_host_state(
|
||||
self.client.host,
|
||||
alive=False,
|
||||
ping_count=3,
|
||||
ping_count=2,
|
||||
retries=24)
|
||||
|
||||
if not state_reached:
|
||||
|
Loading…
x
Reference in New Issue
Block a user