Created
December 3, 2013 23:40
-
-
Save bbg-deploy/7779760 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| before_fork do |server, worker| | |
| # No need for master process to hold a connection | |
| defined?(ActiveRecord::Base) and | |
| ActiveRecord::Base.connection.disconnect! | |
| # Kill off the old master | |
| old_pid = "#{server.pid}.oldbin" | |
| if File.exists?(old_pid) && server.pid != old_pid | |
| begin | |
| Process.kill("QUIT", File.read(old_pid).to_i) | |
| rescue Errno::ENOENT, Errno::ESRCH | |
| # someone else kiled off the old master | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment