如果我使用ActiveRecord,我的puma配置将建立数据库连接,如Heroku指南Deploying Rails Applications with the Puma Web Server中所述。
on_worker_boot do
ActiveRecord::Base.establish_connection
end
但是,我正在使用ROM(Ruby Object Mapper)。
我尝试省略on_worker_boot
块,但(可预见地)数据库连接未建立或未正确建立,并引发以下错误。
PG::ConnectionBad: PQconsumeInput() SSL error: decryption failed or bad record mac
我已阅读ROM Setup Guide,但没有看到任何相关内容。
如何在美洲狮建立ROM连接?
答案 0 :(得分:3)
解决方案似乎是disconnect
网关连接。
on_worker_boot do
ROM.env.gateways[:default].connection.disconnect
end