From b4796ef4c944177378de96b266f29ad81d48d67d Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 26 Oct 2022 14:52:38 +0000 Subject: [PATCH] Revert incorrect reference call and use right data --- bootstrap-daemon/pvcbootstrapd/lib/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/lib.py b/bootstrap-daemon/pvcbootstrapd/lib/lib.py index 6e82b81..49dc742 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/lib.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/lib.py @@ -142,7 +142,7 @@ def host_checkin(config, data): target_state = "completed" for node in all_nodes: - node.set_boot_state(config, cspec, data, target_state) + host.set_boot_state(config, cspec, node, target_state) # Hosts will now power down ready for real activation in production sleep(60)