From ce9dccc8f660a5dfa6df2f5b54ad33b2425cab8e Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Sun, 8 Oct 2023 15:29:54 +0200 Subject: [PATCH] Puma: Explicitly disable preloading Otherwise, setting WEB_CONCURRENCY would re-enable preloading. --- config/puma.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/puma.rb b/config/puma.rb index 42887675..d85b1048 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -60,7 +60,7 @@ fork_worker # Disable explicit preloading of our app. # With `fork_worker`, we will have an implicit preloading. -# preload_app! +preload_app! false # Disable automatic tagging of the service. tag ''