From cd1db3d5872b0a1afa69b60dcef3ce806299bdb9 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 18 Jul 2021 16:38:58 -0400 Subject: [PATCH] Ensure node name is part of confing --- node-daemon/pvcnoded/Daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index c96c04e2..4423f688 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -147,6 +147,7 @@ def readConfig(pvcnoded_config_file, myhostname): # Handle the basic config (hypervisor-only) try: config_general = { + 'node': o_config['pvc']['node'], 'coordinators': o_config['pvc']['cluster']['coordinators'], 'enable_hypervisor': o_config['pvc']['functions']['enable_hypervisor'], 'enable_networking': o_config['pvc']['functions']['enable_networking'],