diff --git a/confluent_server/confluent/config/configmanager.py b/confluent_server/confluent/config/configmanager.py index e7b5dc3e..08f4f44f 100644 --- a/confluent_server/confluent/config/configmanager.py +++ b/confluent_server/confluent/config/configmanager.py @@ -2281,6 +2281,9 @@ class ConfigManager(object): newdict = {'value': attribmap[node][attrname]} else: newdict = attribmap[node][attrname] + # add check here, skip None attributes + if newdict is None: + continue if 'value' in newdict and attrname.startswith("secret."): newdict['cryptvalue'] = crypt_value(newdict['value']) del newdict['value']