Merge pull request #6260 from justinsb/log_clearly_when_retry_fails

Always log when a retry loop fails
This commit is contained in:
Kubernetes Prow Robot 2018-12-21 22:57:18 -08:00 committed by GitHub
commit 7af77bb79c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ func RetryWithBackoff(backoff wait.Backoff, condition func() (bool, error)) (boo
}
if noMoreRetries {
glog.V(2).Infof("hit maximum retries %d with error %v", i, err)
glog.Infof("hit maximum retries %d with error %v", i, err)
return done, err
}
}