Skip to content

Commit

Permalink
fix one e2e test problem (kubeflow#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchihe authored and k8s-ci-robot committed Oct 17, 2019
1 parent 128a757 commit 8fa0ca6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/e2e/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def wait_for_kfservice_ready(name, namespace='kfserving-ci-e2e-test', Timeout_se
for _ in range(round(Timeout_seconds/10)):
time.sleep(10)
kfsvc_status = KFServing.get(name, namespace=namespace)
status = 'Unknown'
for condition in kfsvc_status['status'].get('conditions', {}):
if condition.get('type', '') == 'Ready':
status = condition.get('status', 'Unknown')
Expand Down

0 comments on commit 8fa0ca6

Please sign in to comment.