about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
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