about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-13 18:11:46 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-13 18:11:46 -0800
commitb93cc4de233c9fb69c0c7f4967bdf9851fe4421a (patch)
tree037f9b821f60b14c9b0feb657f37cf848cff8f24 /lib
parente4256da292f9626d7dfca60e08f65651a0a9139a (diff)
downloadunicorn-b93cc4de233c9fb69c0c7f4967bdf9851fe4421a.tar.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/unicorn/tee_input.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/tee_input.rb b/lib/unicorn/tee_input.rb
index 50ddb5b..01717ce 100644
--- a/lib/unicorn/tee_input.rb
+++ b/lib/unicorn/tee_input.rb
@@ -146,7 +146,7 @@ module Unicorn
 
     def finalize_input
       while parser.trailers(req, buf).nil?
-        # Don't worry about throw-ing :http_499 here on EOFError, tee()
+        # Don't worry about raising ClientShutdown here on EOFError, tee()
         # will catch EOFError when app is processing it, otherwise in
         # initialize we never get any chance to enter the app so the
         # EOFError will just get trapped by Unicorn and not the Rack app