Sha256: be31b5a241cf442e9d4b2dbfc62cf50b1d27bd1cdf2a46b3e049d2abc65e86b9

Contents?: true

Size: 604 Bytes

Versions: 5

Compression:

Stored size: 604 Bytes

Contents

worker_processes Integer(ENV["WEB_CONCURRENCY"] || 3)
timeout 15
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

  defined?(ActiveRecord::Base) and
    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 send QUIT'
  end

  defined?(ActiveRecord::Base) and
    ActiveRecord::Base.establish_connection
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
smalruby-editor-0.0.5 config/unicorn.rb
smalruby-editor-0.0.4 config/unicorn.rb
smalruby-editor-0.0.3 config/unicorn.rb
smalruby-editor-0.0.2 config/unicorn.rb
smalruby-editor-0.0.1 config/unicorn.rb