Fix: topologysuffix_find doesn't have no_members option

Remove no_members=False from because topologysuffix_attribute doesn't
have no_members option, and this causes errors in replication.py

https://fedorahosted.org/freeipa/ticket/4995

Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
Martin Basti 2016-06-02 13:15:33 +02:00
parent deb896768f
commit f077fab23f

View File

@ -1782,7 +1782,7 @@ def get_orphaned_suffixes(masters):
master
"""
all_suffixes = api.Command.topologysuffix_find(
sizelimit=0, no_members=False)['result']
sizelimit=0)['result']
all_suffix_names = set(s['cn'][0] for s in all_suffixes)
managed_suffixes = set(map_masters_to_suffixes(masters))