upgrade azure sdk to support ultra ssd

update Godeps.json

update azure sdk for ultrassd support

update bazel

fix build failure
This commit is contained in:
andyzhangx
2018-10-29 08:03:22 +00:00
parent b53edbc695
commit d210b4bcf3
84 changed files with 4627 additions and 986 deletions

View File

@@ -234,7 +234,7 @@ func DoRetryForStatusCodes(attempts int, backoff time.Duration, codes ...int) Se
}
delayed := DelayWithRetryAfter(resp, r.Context().Done())
if !delayed && !DelayForBackoff(backoff, attempt, r.Context().Done()) {
return nil, r.Context().Err()
return resp, r.Context().Err()
}
// don't count a 429 against the number of attempts
// so that we continue to retry until it succeeds