about summary refs log tree commit homepage
path: root/examples/unicorn.conf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unicorn.conf.rb')
-rw-r--r--examples/unicorn.conf.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/unicorn.conf.rb b/examples/unicorn.conf.rb
index 37c3e81..28a9e65 100644
--- a/examples/unicorn.conf.rb
+++ b/examples/unicorn.conf.rb
@@ -63,7 +63,10 @@ before_fork do |server, worker|
   #   end
   # end
   #
-  # # *optionally* throttle the master from forking too quickly by sleeping
+  # Throttle the master from forking too quickly by sleeping.  Due
+  # to the implementation of standard Unix signal handlers, this
+  # helps (but does not completely) prevent identical, repeated signals
+  # from being lost when the receiving process is busy.
   # sleep 1
 end