in client.py [0:0]
def syncrepl_present(self,uuids,refreshDeletes=False):
if uuids is None:
if refreshDeletes is False:
deleted_entries = [
uuid
for uuid in self.changedb.keys()
if uuid not in self.__presentUUIDs and uuid != 'ldap_cookie'
]
self.syncrepl_delete( deleted_entries )
self.__presentUUIDs = {}
else:
if refreshDeletes is True:
self.syncrepl_delete( uuids )
else:
for uuid in uuids:
self.__presentUUIDs[uuid] = True