mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-17 14:21:30 +00:00
ldap_attr: typecast values to list (#46818)
Adding a value to an attribute or removing a value from an attribute of a LDAP entry throws the exception TypeError: object of type 'filter' has no len()
This commit is contained in:
committed by
Abhijeet Kasurde
parent
b772485d97
commit
739a129322
@@ -178,7 +178,7 @@ class LdapAttr(LdapGeneric):
|
||||
self.values = [to_bytes(self.module.params['values'])]
|
||||
|
||||
def add(self):
|
||||
values_to_add = filter(self._is_value_absent, self.values)
|
||||
values_to_add = list(filter(self._is_value_absent, self.values))
|
||||
|
||||
if len(values_to_add) > 0:
|
||||
modlist = [(ldap.MOD_ADD, self.name, values_to_add)]
|
||||
@@ -188,7 +188,7 @@ class LdapAttr(LdapGeneric):
|
||||
return modlist
|
||||
|
||||
def delete(self):
|
||||
values_to_delete = filter(self._is_value_present, self.values)
|
||||
values_to_delete = list(filter(self._is_value_present, self.values))
|
||||
|
||||
if len(values_to_delete) > 0:
|
||||
modlist = [(ldap.MOD_DELETE, self.name, values_to_delete)]
|
||||
|
||||
Reference in New Issue
Block a user