aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-12-01 20:18:17 +1030
committerGitHub <noreply@github.com>2017-12-01 20:18:17 +1030
commite40a00e8ac54949d0cecb98d7434bd71d35144e2 (patch)
treeb34fc76f7dc2298bb725132de17cb0ce7bd70c12 /railties
parent05d1e9e413a87bee5b0c1c200fa9f84dba0e1d15 (diff)
parent84cad15213ea5447ea0890a4f017b44ad85b901a (diff)
downloadrails-e40a00e8ac54949d0cecb98d7434bd71d35144e2.tar.gz
rails-e40a00e8ac54949d0cecb98d7434bd71d35144e2.tar.bz2
rails-e40a00e8ac54949d0cecb98d7434bd71d35144e2.zip
Merge pull request #31241 from matthewd/no-after-fork
Drop the before_fork/on_worker_boot advice
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/rails/app/templates/config/puma.rb.tt24
1 files changed, 1 insertions, 23 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/puma.rb.tt b/railties/lib/rails/generators/rails/app/templates/config/puma.rb.tt
index 1e19380dcb..a5eccf816b 100644
--- a/railties/lib/rails/generators/rails/app/templates/config/puma.rb.tt
+++ b/railties/lib/rails/generators/rails/app/templates/config/puma.rb.tt
@@ -26,31 +26,9 @@ environment ENV.fetch("RAILS_ENV") { "development" }
# Use the `preload_app!` method when specifying a `workers` number.
# This directive tells Puma to first boot the application and load code
# before forking the application. This takes advantage of Copy On Write
-# process behavior so workers use less memory. If you use this option
-# you need to make sure to reconnect any threads in the `on_worker_boot`
-# block.
+# process behavior so workers use less memory.
#
# preload_app!
-# If you are preloading your application and using Active Record, it's
-# recommended that you close any connections to the database before workers
-# are forked to prevent connection leakage.
-#
-# before_fork do
-# ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
-# end
-
-# The code in the `on_worker_boot` will be called if you are using
-# clustered mode by specifying a number of `workers`. After each worker
-# process is booted, this block will be run. If you are using the `preload_app!`
-# option, you will want to use this block to reconnect to any threads
-# or connections that may have been created at application boot, as Ruby
-# cannot share connections between processes.
-#
-# on_worker_boot do
-# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
-# end
-#
-
# Allow puma to be restarted by `rails restart` command.
plugin :tmp_restart