Find .d pid files with swift-orphans

Change-Id: I7a2f19862817abf15e51463bd124293730451602
This commit is contained in:
Tim Burke 2019-08-30 11:54:47 -07:00
parent 3ec6ce2a0f
commit e6e31410e0
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ Example (sends SIGTERM to all orphaned Swift processes older than two hours):
for root, directories, files in os.walk(options.run_dir):
for name in files:
if name.endswith('.pid'):
if name.endswith(('.pid', '.pid.d')):
pids.append(open(os.path.join(root, name)).read().strip())
pids.extend(subprocess.Popen(
['ps', '--ppid', pids[-1], '-o', 'pid', '--no-headers'],