about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-15 12:38:49 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-15 12:38:49 -0800
commit54ab41af8430e00acba87ae6eac455574cdb3838 (patch)
treec3fd4cd8c3228b278bac913aa378b9aba68f94eb /lib
parente2f68e87cdccc872a680a5ce7e4368361ee3bfec (diff)
downloadunicorn-54ab41af8430e00acba87ae6eac455574cdb3838.tar.gz
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