about summary refs log tree commit homepage
path: root/test/unit/test_tee_input.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-05 22:09:20 +0000
committerEric Wong <normalperson@yhbt.net>2010-10-05 22:09:20 +0000
commitfd6b47cf1690cb45f2144cd92e0fe1f301c7c37b (patch)
tree37c7df590221318380a086269a8aa4c4a20670d4 /test/unit/test_tee_input.rb
parent350e8fa3a94838bcc936782315b3472615fe6517 (diff)
downloadunicorn-fd6b47cf1690cb45f2144cd92e0fe1f301c7c37b.tar.gz
TeeInput methods may be invoked deep in the stack, so
avoid giving them more work to do if a client disconnects
due to a bad upload.
Diffstat (limited to 'test/unit/test_tee_input.rb')
-rw-r--r--test/unit/test_tee_input.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_tee_input.rb b/test/unit/test_tee_input.rb
index 56b8952..263aa8a 100644
--- a/test/unit/test_tee_input.rb
+++ b/test/unit/test_tee_input.rb
@@ -10,7 +10,7 @@ class TestTeeInput < Test::Unit::TestCase
   def setup
     @rs = $/
     @env = {}
-    @rd, @wr = UNIXSocket.pair
+    @rd, @wr = Kgio::UNIXSocket.pair
     @rd.sync = @wr.sync = true
     @start_pid = $$
   end