Explorar el Código

Improve ActiveRecord connection in on_worker_boot (#9238)

This is how it looks in the example in the Puma README
master
Eugen Rochko hace 5 años
committed by GitHub
padre
commit
ed7c5f94f7
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      config/puma.rb

+ 3
- 1
config/puma.rb Ver fichero

@@ -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

Cargando…
Cancelar
Guardar