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