about summary refs log tree commit homepage
path: root/lib/rainbows/thread_pool.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-05 20:16:18 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-05 20:16:35 -0700
commit09535c1bd412bd66f93723c2c1aa7aacc2e091c3 (patch)
treeb31bf862247995887a41f06d23e62b416bbf461a /lib/rainbows/thread_pool.rb
parente4057cf951a32c3a29b66dae1c1abea7989889e8 (diff)
downloadrainbows-09535c1bd412bd66f93723c2c1aa7aacc2e091c3.tar.gz
Ensure we reset the per-thread time Thread.current[:t] with each
connection so we don't timeout long-lived connections.
Diffstat (limited to 'lib/rainbows/thread_pool.rb')
-rw-r--r--lib/rainbows/thread_pool.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rainbows/thread_pool.rb b/lib/rainbows/thread_pool.rb
index a6269cd..fc44cac 100644
--- a/lib/rainbows/thread_pool.rb
+++ b/lib/rainbows/thread_pool.rb
@@ -79,7 +79,6 @@ module Rainbows
           ret.first.each do |sock|
             begin
               process_client(sock.accept_nonblock)
-              thr[:t] = Time.now
             rescue Errno::EAGAIN, Errno::ECONNABORTED
             end
           end