From 9e0e2f0c76e109dca1d9a46a0800ff60438011a1 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 19:23:22 +0000 Subject: [PATCH] Lower initial wait time to 30s --- bootstrap-daemon/pvcbootstrapd/lib/redfish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/redfish.py b/bootstrap-daemon/pvcbootstrapd/lib/redfish.py index a4a04e6..83793f3 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/redfish.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/redfish.py @@ -715,8 +715,8 @@ def redfish_init(config, cspec, data): cspec_hostname = cspec_node["node"]["hostname"] cspec_fqdn = cspec_node["node"]["fqdn"] - logger.info("Waiting 60 seconds for system normalization") - sleep(60) + logger.info("Waiting 30 seconds for system normalization") + sleep(30) notifications.send_webhook(config, "begin", f"Cluster {cspec_cluster}: Beginning Redfish initialization of host {cspec_fqdn}")