Co-authored-by: Samantaz Fox <coding@samantaz.fr>
This commit is contained in:
syeopite 2024-06-16 15:18:21 +00:00 committed by GitHub
parent e3ba1b7b08
commit 41f7f70f6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ struct YoutubeConnectionPool
private def build_pool
DB::Pool(HTTP::Client).new(initial_pool_size: 0, max_pool_size: capacity, max_idle_pool_size: capacity, checkout_timeout: timeout) do
conn = make_client(url, force_resolve = true)
conn = make_client(url, force_resolve: true)
conn.family = Socket::Family::INET if conn.family == Socket::Family::UNSPEC
conn
end