From 5e0c1c064312ad7675e5bd6cab1e4dd884c45470 Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Mon, 22 Mar 2021 18:58:43 +0100 Subject: [PATCH] preload_app! is not always disabled by default See https://github.com/puma/puma/blob/v5.2.2/lib/puma/dsl.rb#L615-L623 The default changed in Puma 5 with #2143. Docs later updated in #2481. --- docs/restart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/restart.md b/docs/restart.md index fa3e781f60..de9e84f2d0 100644 --- a/docs/restart.md +++ b/docs/restart.md @@ -45,7 +45,7 @@ Any of the following will cause a Puma server to perform a phased restart: ### Supported configurations * Works in cluster mode only -* To support upgrading the application that Puma is serving, ensure `prune_bundler` is enabled and that `preload_app` is disabled (it is disabled by default). +* To support upgrading the application that Puma is serving, ensure `prune_bundler` is enabled and that `preload_app!` is disabled * Supported on all platforms where cluster mode is supported ### Client experience