about summary refs log tree commit homepage
path: root/lib/rainbows/thread_spawn.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-10 12:20:12 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-10 12:20:12 -0700
commit1925c176d2b822c6c17aec472e318669f054beda (patch)
tree7e6f0a79802444a8ed7cca0f61e4257be33c4979 /lib/rainbows/thread_spawn.rb
parent5cf2c7d9543a9f25efb69e4693255c52678b0571 (diff)
downloadrainbows-1925c176d2b822c6c17aec472e318669f054beda.tar.gz
Something is probably wrong with the OS if it does,
so make sure it gets logged and hopefully reported.
Diffstat (limited to 'lib/rainbows/thread_spawn.rb')
-rw-r--r--lib/rainbows/thread_spawn.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/thread_spawn.rb b/lib/rainbows/thread_spawn.rb
index cafdd33..99647d5 100644
--- a/lib/rainbows/thread_spawn.rb
+++ b/lib/rainbows/thread_spawn.rb
@@ -42,7 +42,7 @@ module Rainbows
           end
           c = begin
             l.accept_nonblock
-          rescue Errno::EAGAIN, Errno::EINTR, Errno::ECONNABORTED
+          rescue Errno::EAGAIN, Errno::ECONNABORTED
             next
           end
           threads.add(Thread.new(c) { |c| process_client(c) })