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
This commit is contained in:
Christopher Dearborn 2019-02-15 14:54:25 -05:00
parent 45569a427f
commit e204c367ab
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ class DRACClient(object):
state_reached = self._wait_for_host_state( state_reached = self._wait_for_host_state(
self.client.host, self.client.host,
alive=False, alive=False,
ping_count=3, ping_count=2,
retries=24) retries=24)
if not state_reached: if not state_reached: