mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
Retry on any 5xx server error
This commit is contained in:
parent
e86e9474bf
commit
ac249f421f
1 changed files with 2 additions and 2 deletions
|
@ -529,7 +529,7 @@ class FileDownloader(object):
|
|||
data = urllib2.urlopen(request)
|
||||
break
|
||||
except (urllib2.HTTPError, ), err:
|
||||
if err.code != 500 and err.code != 503 and err.code != 416:
|
||||
if (err.code < 500 or err.code >= 600) and err.code != 416:
|
||||
# Unexpected HTTP error
|
||||
raise
|
||||
elif err.code == 416:
|
||||
|
@ -539,7 +539,7 @@ class FileDownloader(object):
|
|||
data = urllib2.urlopen(basic_request)
|
||||
content_length = data.info()['Content-Length']
|
||||
except (urllib2.HTTPError, ), err:
|
||||
if err.code != 503 and err.code != 500:
|
||||
if err.code < 500 or err.code >= 600:
|
||||
raise
|
||||
else:
|
||||
# Examine the reported length
|
||||
|
|
Loading…
Reference in a new issue