2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 11:01:09 +00:00

Fix configmanager issue witht more recent python3

This commit is contained in:
Jarrod Johnson 2022-02-04 16:21:39 -05:00
parent 7c169f635a
commit 522d7e2b59

View File

@ -1795,7 +1795,7 @@ class ConfigManager(object):
group))
if not autocreate and group not in self._cfgstore['nodegroups']:
raise ValueError("{0} group does not exist".format(group))
for attr in attribmap[group]:
for attr in list(attribmap[group]):
# first do a pass to normalize out any aliased attribute names
if attr in _attraliases:
newattr = _attraliases[attr]