1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-25 21:29:35 +00:00

Handling Connection Reset by Peer Error

This commit is contained in:
light94 2015-02-01 00:10:58 +05:30
parent e41b1f7385
commit e77d2975af

View file

@ -3,6 +3,9 @@ from __future__ import unicode_literals
import os
import time
from socket import error as SocketError
import errno
from .common import FileDownloader
from ..compat import (
compat_urllib_request,
@ -99,6 +102,11 @@ class HttpFD(FileDownloader):
resume_len = 0
open_mode = 'wb'
break
except SocketError as e:
if e.errno != errno.ECONNRESET:
raise # Not error we are looking for
pass
# Retry
count += 1
if count <= retries: