Merge pull request #1321 from aibaars/gcs-fix-retry

GCS storage driver: fix retry function
This commit is contained in:
Richard Scothern 2016-01-06 12:00:12 -08:00
commit 6a248e115b
2 changed files with 43 additions and 3 deletions

View file

@ -318,13 +318,13 @@ func retry(maxTries int, req request) error {
backoff := time.Second
var err error
for i := 0; i < maxTries; i++ {
err := req()
err = req()
if err == nil {
return nil
}
status := err.(*googleapi.Error)
if status == nil || (status.Code != 429 && status.Code < http.StatusInternalServerError) {
status, ok := err.(*googleapi.Error)
if !ok || (status.Code != 429 && status.Code < http.StatusInternalServerError) {
return err
}