Find .d pid files with swift-orphans
Change-Id: I7a2f19862817abf15e51463bd124293730451602
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -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'],
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.