From dba4c40f0e14a80a7d3d847b7bb266d9f2d04757 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 21 Jan 2021 11:19:13 -0500 Subject: [PATCH] Fix collective join with empty config Collective join without a key set would fail on first try. --- confluent_server/confluent/config/configmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/config/configmanager.py b/confluent_server/confluent/config/configmanager.py index 6f96bcec..3342f1ff 100644 --- a/confluent_server/confluent/config/configmanager.py +++ b/confluent_server/confluent/config/configmanager.py @@ -785,7 +785,7 @@ def commit_clear(): # currently defined as local to each collective member # currently just 'autosense' which is intended to be active # per collective member - for globvar in _oldcfgstore['globals']: + for globvar in _oldcfgstore.get('globals', ()): if globvar.endswith('_key'): continue _cfgstore['globals'][globvar] = _oldcfgstore['globals'][globvar]