-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1384 from rubymonsters/anja-bring-back-unicorn
move back to unicorn
- Loading branch information
Showing
7 changed files
with
33 additions
and
21 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 |
---|---|---|
@@ -1 +1 @@ | ||
web: bundle exec puma -C config/puma.rb | ||
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb |
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 was deleted.
Oops, something went wrong.
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,22 @@ | ||
worker_processes Integer(ENV["WEB_CONCURRENCY"] || 1) | ||
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 |