[http] Fix bug in retrying on read timeout in py < 3.10

socket.timeout is not an alias of TimeoutError in py < 3.10
Fixes bug in a2e77303e3
Authored-by: coletdjnz
pull/3889/head
coletdjnz 2 years ago
parent 0fa7d2c8e4
commit 5faf6528fb
No known key found for this signature in database
GPG Key ID: 91984263BB39894A

@ -1,5 +1,6 @@
import os
import random
import socket
import ssl
import time
@ -18,7 +19,13 @@ from ..utils import (
write_xattr,
)
RESPONSE_READ_EXCEPTIONS = (TimeoutError, ConnectionError, ssl.SSLError, compat_http_client.HTTPException)
RESPONSE_READ_EXCEPTIONS = (
TimeoutError,
socket.timeout, # compat: py < 3.10
ConnectionError,
ssl.SSLError,
compat_http_client.HTTPException
)
class HttpFD(FileDownloader):

Loading…
Cancel
Save