Respect use_quic param and fix typos

このコミットが含まれているのは:
syeopite 2021-09-28 17:21:26 -07:00
コミット 245122104a
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 6FA616E5A5294A82
2個のファイルの変更6行の追加6行の削除

ファイルの表示

@ -55,7 +55,7 @@ module Invidious::Routes::Login
begin
client = nil # Declare variable
{% unless flag?(:disable_quic) %}
client = QUIC::Client.new(LOGIN_URL)
client = CONFIG.use_quic ? QUIC::Client.new(LOGIN_URL) : HTTP::Client.new(LOGIN_URL)
{% else %}
client = HTTP::Client.new(LOGIN_URL)
{% end %}

ファイルの表示

@ -3,9 +3,9 @@ require "lsquic"
{% unless flag?(:disable_quic) %}
require "lsquic"
alias ConnectonClientType = QUIC::Client | HTTP::Client
alias HTTPClientType = QUIC::Client | HTTP::Client
{% else %}
alias ConnectonClientType = HTTP::Client
alias HTTPClientType = HTTP::Client
{% end %}
def add_yt_headers(request)
@ -27,7 +27,7 @@ struct YoutubeConnectionPool
property! url : URI
property! capacity : Int32
property! timeout : Float64
property pool : DB::Pool(ConnectonClientType)
property pool : DB::Pool(HTTPClientType)
def initialize(url : URI, @capacity = 5, @timeout = 5.0, use_quic = true)
@url = url
@ -45,7 +45,7 @@ struct YoutubeConnectionPool
rescue ex
conn.close
{% unless flag?(:disable_quic) %}
conn = QUIC::Client.new(url)
conn = CONFIG.use_quic ? QUIC::Client.new(url) : HTTP::Client.new(url)
{% else %}
conn = HTTP::Client.new(url)
{% end %}
@ -63,7 +63,7 @@ struct YoutubeConnectionPool
end
private def build_pool(use_quic)
DB::Pool(ConnectonClientType).new(initial_pool_size: 0, max_pool_size: capacity, max_idle_pool_size: capacity, checkout_timeout: timeout) do
DB::Pool(HTTPClientType).new(initial_pool_size: 0, max_pool_size: capacity, max_idle_pool_size: capacity, checkout_timeout: timeout) do
conn = nil # Declare
{% unless flag?(:disable_quic) %}
if use_quic