Slide 29
Slide 29 text
修正コード by jhawthorny(again)
修正はRailsのActive Job integration testが利用している queue_classic
になされた
https://github.com/QueueClassic/queue_classic/pull/334
libpqに渡す接続文字列でttyオプションの値を空文字 ''
から nil
に変更している
[
host, # host or percent-encoded socket path
url.port || 5432,
- nil, '', #opts, tty
+ nil, nil, #opts, tty
url.path.gsub("/",""), # database name
url.user,
url.password
Rails側ではこのpull requestの元になるブランチのqueue_classicを利用中
https://github.com/rails/rails/pull/43373