Skip to content

Commit

Permalink
Fix type error -- Kubernetes sky down exception (skypilot-org#4583)
Browse files Browse the repository at this point in the history
to list
  • Loading branch information
zpoint authored Jan 17, 2025
1 parent 0a810ee commit 9e1b4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/provision/kubernetes/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ def _terminate_pod_thread(pod_info):
_terminate_node(namespace, context, pod_name)

# Run pod termination in parallel
subprocess_utils.run_in_parallel(_terminate_pod_thread, pods.items(),
subprocess_utils.run_in_parallel(_terminate_pod_thread, list(pods.items()),
_NUM_THREADS)


Expand Down

0 comments on commit 9e1b4dd

Please sign in to comment.