From 40f9b444348c6b7490aaf1f9ed2f8907fa6abf3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fran=C3=A7a?= Date: Fri, 15 May 2020 14:03:31 -0400 Subject: [PATCH] Fix example for on_worker_boot --- lib/puma/dsl.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/puma/dsl.rb b/lib/puma/dsl.rb index c11b130c..3821656e 100644 --- a/lib/puma/dsl.rb +++ b/lib/puma/dsl.rb @@ -443,8 +443,8 @@ module Puma # # @note Cluster mode only. # @example - # on_worker_fork do - # puts 'Before worker fork...' + # on_worker_boot do + # puts 'Before worker boot...' # end def on_worker_boot(&block) @options[:before_worker_boot] ||= []