Skip to content
Snippets Groups Projects
Unverified Commit e8c43abd authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

On HTTP errors, also show the curl error

This is a hopefully temporary measure to diagnose the intermittent
"HTTP error 200" failures.
parent 4425a5c5
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ struct CurlDownloader : public Downloader ...@@ -276,7 +276,7 @@ struct CurlDownloader : public Downloader
code == CURLE_ABORTED_BY_CALLBACK && _isInterrupted code == CURLE_ABORTED_BY_CALLBACK && _isInterrupted
? DownloadError(Interrupted, format("download of ‘%s’ was interrupted") % request.uri) ? DownloadError(Interrupted, format("download of ‘%s’ was interrupted") % request.uri)
: httpStatus != 0 : httpStatus != 0
? DownloadError(err, format("unable to download ‘%s’: HTTP error %d") % request.uri % httpStatus) ? DownloadError(err, format("unable to download ‘%s’: HTTP error %d (curl error: %s)") % request.uri % httpStatus % curl_easy_strerror(code))
: DownloadError(err, format("unable to download ‘%s’: %s (%d)") % request.uri % curl_easy_strerror(code) % code); : DownloadError(err, format("unable to download ‘%s’: %s (%d)") % request.uri % curl_easy_strerror(code) % code);
/* If this is a transient error, then maybe retry the /* If this is a transient error, then maybe retry the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment