Skip to content

Commit

Permalink
Merge pull request #1653 from ceph/nuke-9
Browse files Browse the repository at this point in the history
nuke: kill -9 the teuthology process

Reviewed-by: Josh Durgin <[email protected]>
  • Loading branch information
jdurgin authored Jun 21, 2021
2 parents f359b10 + 8288a51 commit 26631ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/nuke/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def main(args):
if ctx.pid:
if ctx.archive:
log.info('Killing teuthology process at pid %d', ctx.pid)
os.system('grep -q %s /proc/%d/cmdline && sudo kill %d' % (
os.system('grep -q %s /proc/%d/cmdline && sudo kill -9 %d' % (
ctx.archive,
ctx.pid,
ctx.pid))
Expand Down

0 comments on commit 26631ed

Please sign in to comment.