Merge "Update fw-update-strategy steps to load wait_time from_dict"

This commit is contained in:
Zuul 2021-05-25 15:02:20 +00:00 committed by Gerrit Code Review
commit d182e9bcf2

View File

@ -2123,13 +2123,11 @@ class FwUpdateHostsStep(strategy.StrategyStep):
self._host_uuids = list()
self._monitoring_fw_update = False
self._wait_time = 0
self._host_failed_device_update = dict()
self._host_completed = dict()
for host in hosts:
self._host_names.append(host.name)
self._host_uuids.append(host.uuid)
self._host_completed[host.name] = (False, False, '')
self._host_failed_device_update[host.name] = list()
@coroutine
def _get_host_callback(self):
@ -2309,7 +2307,7 @@ class FwUpdateHostsStep(strategy.StrategyStep):
self._hosts = list()
self._host_uuids = list()
self._host_completed = dict()
self._wait_time = 0
self._monitoring_fw_update = False
self._host_names = data['entity_names']
@ -2405,7 +2403,7 @@ class FwUpdateAbortHostsStep(strategy.StrategyStep):
self._hosts = list()
self._host_uuids = list()
self._host_completed = dict()
self._wait_time = 0
self._host_names = data['entity_names']
host_table = tables.tables_get_host_table()
for host_name in self._host_names: