Skip to content

Commit

Permalink
Merge pull request #1959 from ceph/kill-running
Browse files Browse the repository at this point in the history
kill: Fix killing by owner
  • Loading branch information
zmc authored Jun 25, 2024
2 parents bc919db + 33e0815 commit 544fecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def kill_run(run_name, archive_base=None, owner=None, machine_type=None,
return
if owner is not None:
targets = find_targets(run_name)
names = [t["name"] for t in targets]
names = list(targets.keys())
lock_ops.unlock_safe(names, owner, run_name)
report.try_mark_run_dead(run_name)

Expand Down

0 comments on commit 544fecb

Please sign in to comment.