adopt-a-hydrant/config/unicorn.rb

19 lines
471 B
Ruby
Raw Normal View History

2015-09-04 20:28:15 +00:00
worker_processes 3
timeout 30
preload_app true
before_fork do |server, worker|
Signal.trap 'TERM' do
puts 'Unicorn master intercepting TERM and sending myself QUIT instead'
Process.kill 'QUIT', Process.pid
end
ActiveRecord::Base.connection.disconnect!
end
after_fork do |server, worker|
Signal.trap 'TERM' do
puts 'Unicorn worker intercepting TERM and doing nothing. Wait for master to sent QUIT'
end
ActiveRecord::Base.establish_connection
end