fix format error

This commit is contained in:
Chris Lu 2021-02-12 06:44:26 -08:00
parent 0604afcda7
commit 4ce56bac08

View file

@ -63,7 +63,7 @@ func FastGet(url string) ([]byte, bool, error) {
if res.StatusCode() >= 400 {
retryable := res.StatusCode() >= 500
return nil, retryable, fmt.Errorf("%s: %s", url, res.StatusCode())
return nil, retryable, fmt.Errorf("%s: %d", url, res.StatusCode())
}
if err != nil {
return nil, false, err
@ -96,7 +96,7 @@ func FastReadUrlAsStream(fileUrl string, cipherKey []byte, isContentGzipped bool
if res.StatusCode() >= 400 {
retryable = res.StatusCode() >= 500
return retryable, fmt.Errorf("%s: %s", fileUrl, res.StatusCode())
return retryable, fmt.Errorf("%s: %d", fileUrl, res.StatusCode())
}
contentEncoding := res.Header.Peek("Content-Encoding")