Adds sleep cap to exponential backoff so it does not go too high

This commit is contained in:
Camilo Aguilar 2014-05-15 13:04:37 -04:00
parent 31f61d7531
commit ff70a60fbc

View File

@ -8,6 +8,8 @@ import (
"time"
)
const maxTimeout = time.Second * 5
type Datasource interface {
Fetch() ([]byte, error)
Type() string
@ -40,6 +42,10 @@ func getWithExponentialBackoff(url string) (*http.Response, error) {
return resp, nil
}
duration := time.Millisecond * time.Duration((math.Pow(float64(2), float64(i)) * 100))
if duration > maxTimeout {
duration = maxTimeout
}
log.Printf("unable to fetch user-data from %s, try again in %s", url, duration)
time.Sleep(duration)
}