mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Fix race in integration test
This commit is contained in:
parent
012ba0e3b0
commit
0804a5c823
@ -308,10 +308,12 @@ func podRunning(c *client.Client, podNamespace string, podID string) wait.Condit
|
||||
return false, nil
|
||||
}
|
||||
if err != nil {
|
||||
return false, err
|
||||
// This could be a connection error so we want to retry, but log the error.
|
||||
glog.Errorf("Error when reading pod %q: %v", podID, err)
|
||||
return false, nil
|
||||
}
|
||||
if pod.Status.Phase != api.PodRunning {
|
||||
return false, errors.New(fmt.Sprintf("Pod status is %q", pod.Status.Phase))
|
||||
return false, nil
|
||||
}
|
||||
return true, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user