From 6ab39cd2e291ebeaa7dfc7420d5d1df57e6cf7cf Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Jul 2022 17:20:35 +0000 Subject: [PATCH] Add further delay to avoid errors --- bootstrap-daemon/pvcbootstrapd/lib/redfish.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/redfish.py b/bootstrap-daemon/pvcbootstrapd/lib/redfish.py index 67ed56f..6ba6a6d 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/redfish.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/redfish.py @@ -833,6 +833,9 @@ def redfish_init(config, cspec, data): ) logger.debug(node) + logger.info("Waiting 60 seconds for system normalization") + sleep(60) + logger.info("Determining system disk...") storage_root = system_detail.get("Storage", {}).get("@odata.id") system_drive_target = get_system_drive_target(session, cspec_node, storage_root)