forked from midou/invidious
Remove invalid connections from pool
This commit is contained in:
parent
e05a25d701
commit
7f8746fcd4
@ -1607,9 +1607,17 @@ struct HTTPPool
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
begin
|
||||||
response = yield conn
|
response = yield conn
|
||||||
conn.unset_proxy
|
conn.unset_proxy
|
||||||
response
|
response
|
||||||
|
rescue ex
|
||||||
|
conn = HTTPClient.new(url)
|
||||||
|
conn.family = (url.host == "www.youtube.com") ? CONFIG.force_resolve : Socket::Family::UNSPEC
|
||||||
|
conn.read_timeout = 5.seconds
|
||||||
|
conn.connect_timeout = 5.seconds
|
||||||
|
yield conn
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user