Move delay further

This commit is contained in:
Joshua Boniface 2022-07-07 17:15:38 +00:00
parent 668b5c9939
commit 6acacc153c
1 changed files with 4 additions and 3 deletions

View File

@ -745,6 +745,10 @@ def redfish_init(config, cspec, data):
notifications.send_webhook(config, "success", f"Cluster {cspec_cluster}: Logged in to Redfish for host {cspec_fqdn} at {bmc_host}")
logger.info("Characterizing node...")
logger.info("Waiting 60 seconds for system normalization")
sleep(60)
# Get Refish bases
logger.debug("Getting redfish bases")
redfish_base_root = "/redfish/v1"
@ -767,9 +771,6 @@ def redfish_init(config, cspec, data):
set_power_state(session, system_root, redfish_vendor, "off")
set_indicator_state(session, system_root, redfish_vendor, "on")
logger.info("Waiting 60 seconds for system normalization")
sleep(60)
# Get the system details
logger.debug("Get the system details")
system_detail = session.get(system_root)