about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/unicorn.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/unicorn.rb b/lib/unicorn.rb
index 168f1f4..cfc6413 100644
--- a/lib/unicorn.rb
+++ b/lib/unicorn.rb
@@ -9,8 +9,10 @@ autoload :Rack, 'rack'
 # functionality to service web application requests fast as possible.
 module Unicorn
 
-  # raise this inside TeeInput when a client disconnects inside the
-  # application dispatch
+  # raised inside TeeInput when a client closes the socket inside the
+  # application dispatch.  This is always raised with an empty backtrace
+  # since there is nothing in the application stack that is responsible
+  # for client shutdowns/disconnects.
   class ClientShutdown < EOFError
   end