mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
Use force_resolve for search suggestions
This commit is contained in:
parent
e56129111a
commit
142d974641
@ -1618,7 +1618,7 @@ struct HTTPPool
|
|||||||
response
|
response
|
||||||
rescue ex
|
rescue ex
|
||||||
conn = HTTPClient.new(url)
|
conn = HTTPClient.new(url)
|
||||||
conn.family = (url.host == "www.youtube.com") ? CONFIG.force_resolve : Socket::Family::UNSPEC
|
conn.family = (url.host == "www.youtube.com" || url.host == "suggestqueries.google.com") ? CONFIG.force_resolve : Socket::Family::UNSPEC
|
||||||
conn.read_timeout = 10.seconds
|
conn.read_timeout = 10.seconds
|
||||||
conn.connect_timeout = 10.seconds
|
conn.connect_timeout = 10.seconds
|
||||||
yield conn
|
yield conn
|
||||||
@ -1630,7 +1630,7 @@ struct HTTPPool
|
|||||||
private def build_pool
|
private def build_pool
|
||||||
ConnectionPool(HTTPClient).new(capacity: capacity, timeout: timeout) do
|
ConnectionPool(HTTPClient).new(capacity: capacity, timeout: timeout) do
|
||||||
client = HTTPClient.new(url)
|
client = HTTPClient.new(url)
|
||||||
client.family = (url.host == "www.youtube.com") ? CONFIG.force_resolve : Socket::Family::UNSPEC
|
client.family = (url.host == "www.youtube.com" || url.host == "suggestqueries.google.com") ? CONFIG.force_resolve : Socket::Family::UNSPEC
|
||||||
client.read_timeout = 10.seconds
|
client.read_timeout = 10.seconds
|
||||||
client.connect_timeout = 10.seconds
|
client.connect_timeout = 10.seconds
|
||||||
client
|
client
|
||||||
|
Loading…
Reference in New Issue
Block a user