diff --git a/pkg/download/download.go b/pkg/download/download.go index 1c6517745..147e20af8 100644 --- a/pkg/download/download.go +++ b/pkg/download/download.go @@ -82,7 +82,7 @@ func Download(ctx context.Context, endpoint string, opts ...Option) (b []byte, e req.Header.Set(k, v) } - err = retry.Exponential(60*time.Second, retry.WithUnits(time.Second), retry.WithJitter(time.Second)).Retry(func() error { + err = retry.Exponential(180*time.Second, retry.WithUnits(time.Second), retry.WithJitter(time.Second), retry.WithErrorLogging(true)).Retry(func() error { select { case <-ctx.Done(): return retry.UnexpectedError(context.Canceled)