Download starts new download task
(ctx context.Context, url string, destination string)
| 121 | |
| 122 | // Download starts new download task |
| 123 | func (downloader *downloaderImpl) Download(ctx context.Context, url string, destination string) error { |
| 124 | return downloader.DownloadWithChecksum(ctx, url, destination, nil, false) |
| 125 | } |
| 126 | |
| 127 | func retryableError(err error) bool { |
| 128 | // unwrap errors.Wrap |
nothing calls this directly
no test coverage detected