fixed sanity-check on parent in restart_services

This commit is contained in:
Fredrik Eriksson 2019-06-24 18:07:45 +02:00
parent db9eab4660
commit 7456538907
No known key found for this signature in database
GPG Key ID: 8825C73A0FD1502A

View File

@ -124,12 +124,12 @@ def restart_services():
tested_parents = set()
for proc in retest_procs:
parent = _get_top_parent(proc)
if not parent:
continue
parent_name = parent.name()
if parent in tested_parents:
log.debug('{} belongs to already tested parent {}'.format(proc, parent))
continue
if not parent:
continue
if _get_deleted_open_files(proc):
tested_parents.add(parent)