Skip to content
Snippets Groups Projects
Unverified Commit ed7c5f94 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Improve ActiveRecord connection in on_worker_boot (#9238)

This is how it looks in the example in the Puma README
parent 0319361f
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment