Skip to content

Commit

Permalink
download: add missing printf verb
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Dec 13, 2024
1 parent a967bcd commit fa3cf00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/download/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (dl *Downloader) retryDownload(downloadURL string) (io.ReadCloser, error) {
resp, err := dl.HTTP.Do(req)

if err != nil {
dl.Logger.Error().LogErrorf("err while doing client request: ", err)
dl.Logger.Error().LogErrorf("err while doing client request: %v", err)
time.Sleep(100 * time.Millisecond)
continue
}
Expand Down

0 comments on commit fa3cf00

Please sign in to comment.