Skip to content

Commit

Permalink
fix: Fix crash in delete_objects
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock committed Jan 5, 2022
1 parent ead8e2d commit 4388968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kluctl/utils/k8s_delete_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def do_delete_object(ref):
futures = []
for ref in namespaces:
f = executor.submit(do_delete_object, ref)
futures.append(f)
futures.append((ref, f))

for ref in object_refs:
if ref in namespaces:
Expand Down

0 comments on commit 4388968

Please sign in to comment.