From 921e57ca7882767814efaf5ce509fc33b8056891 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 20 Aug 2020 23:05:56 -0400 Subject: [PATCH] Fix syntax error --- node-daemon/pvcnoded/Daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index e4415090..2261c878 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -155,7 +155,7 @@ def readConfig(pvcnoded_config_file, myhostname): 'log_keepalive_cluster_details': o_config['pvc']['system']['configuration']['logging']['log_keepalive_cluster_details'], 'log_keepalive_storage_details': o_config['pvc']['system']['configuration']['logging']['log_keepalive_storage_details'], 'console_log_lines': o_config['pvc']['system']['configuration']['logging']['console_log_lines'], - 'vm_shutdown_timeout': int(o_config['pvc']['system'['intervals']['vm_shutdown_timeout']), + 'vm_shutdown_timeout': int(o_config['pvc']['system']['intervals']['vm_shutdown_timeout']), 'keepalive_interval': int(o_config['pvc']['system']['intervals']['keepalive_interval']), 'fence_intervals': int(o_config['pvc']['system']['intervals']['fence_intervals']), 'suicide_intervals': int(o_config['pvc']['system']['intervals']['suicide_intervals']),