pull/7509/head
Medya Gh 2020-04-08 01:14:09 -07:00
parent e9c375d266
commit 1f4bf22d4e
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ func WaitForAppsRunning(cs *kubernetes.Clientset, expected []string, timeout tim
checkRunning := func() (bool, error) {
if err := ExpectAppsRunning(cs, expected); err != nil {
if time.Since(start) > minLogCheckTime {
glog.Info("error waiting for apps to be running: %v", err)
glog.Infof("error waiting for apps to be running: %v", err)
time.Sleep(kconst.APICallRetryInterval * 5)
}
return false, nil