Don't retry CURLE_URL_MALFORMAT
This commit is contained in:
parent
87e3d142cc
commit
2896bb6826
1 changed files with 1 additions and 0 deletions
|
@ -303,6 +303,7 @@ struct CurlDownloader : public Downloader
|
||||||
// Don't bother retrying on certain cURL errors either
|
// Don't bother retrying on certain cURL errors either
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case CURLE_FAILED_INIT:
|
case CURLE_FAILED_INIT:
|
||||||
|
case CURLE_URL_MALFORMAT:
|
||||||
case CURLE_NOT_BUILT_IN:
|
case CURLE_NOT_BUILT_IN:
|
||||||
case CURLE_REMOTE_ACCESS_DENIED:
|
case CURLE_REMOTE_ACCESS_DENIED:
|
||||||
case CURLE_FILE_COULDNT_READ_FILE:
|
case CURLE_FILE_COULDNT_READ_FILE:
|
||||||
|
|
Loading…
Reference in a new issue