From dc3949b686c7946adb493bf65aeff0060025a7fc Mon Sep 17 00:00:00 2001 From: Klaus Zanders Date: Mon, 2 Mar 2026 10:29:02 +0100 Subject: [PATCH] Remove deprecated `on_booted` and use `after_booted` --- config/puma.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/puma.rb b/config/puma.rb index 91b7e7b442c..45237d89362 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -129,8 +129,7 @@ if Rails.env.development? end if siginfo_supported - # Using on_booted is needed to override puma adding handler to show thread statuses - on_booted do + after_booted do Signal.trap("INFO") do system "open", Rails.application.root_url end