-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Neeraj Singh
committed
Dec 9, 2014
1 parent
bef21c3
commit e6aed88
Showing
4 changed files
with
45 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb | ||
worker: bundle exec rake jobs:work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# this template has been picked up from | ||
# https://devcenter.heroku.com/articles/rails-unicorn | ||
|
||
worker_processes Integer(ENV["WEB_CONCURRENCY"] || 2) | ||
|
||
# 30 seconds is the timeout for heroku. If it is not | ||
# deployed on heroku then it can be bumped up. | ||
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 | ||
|
||
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 |