Commit f73b7e77 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Improve ActiveRecord connection in on_worker_boot (#9238)

This is how it looks in the example in the Puma README
parent 63f168c3
Showing with 3 additions and 1 deletion
+3 -1
......@@ -13,7 +13,9 @@ workers ENV.fetch('WEB_CONCURRENCY') { 2 }
preload_app!
on_worker_boot do
ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
ActiveSupport.on_load(:active_record) do
ActiveRecord::Base.establish_connection
end
end
plugin :tmp_restart
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment