fix log for retry

This commit is contained in:
Jaynti Kanani 2020-02-10 19:30:09 +05:30
parent e36fb38183
commit b343bd10c6
No known key found for this signature in database
GPG key ID: 4396982C976BAE5E

View file

@ -65,7 +65,7 @@ func FetchFromHeimdallWithRetry(client http.Client, urlString string, paths ...s
if err == nil && res != nil {
return res, nil
}
log.Info("Retrying again in 5 seconds", u.String())
log.Info("Retrying again in 5 seconds for next Heimdall span", u.Path)
time.Sleep(5 * time.Second)
}
}