Skip to content

Commit

Permalink
Fix other unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterFendley committed Oct 9, 2024
1 parent 1f9b7e1 commit 7b53765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy/github/kfp-readiness/wait_for_pods.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_pod_statuses():

def all_pods_ready(statuses):
return all(pod_status == 'Running' and ready == total
for pod_status, ready, total in statuses.values())
for pod_status, ready, total, _ in statuses.values())


def check_pods(calm_time=10, timeout=600, retries_after_ready=5):
Expand Down

0 comments on commit 7b53765

Please sign in to comment.