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-17 22:42:55 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-17 22:42:55 -0700
commite0c33c583c5b4d2a4661edb6c41d6a60b44dae9d (patch)
tree6c0f7ffb273e2d1b16009e7631323a781797b541 /lib/rainbows/thread_pool.rb
parent031127b1d047d05be7a2ec8af7480d02e9bbdd69 (diff)
downloadrainbows-e0c33c583c5b4d2a4661edb6c41d6a60b44dae9d.tar.gz
I need better tests for graceful shutdown...
Diffstat (limited to 'lib/rainbows/thread_pool.rb')
-rw-r--r--lib/rainbows/thread_pool.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rainbows/thread_pool.rb b/lib/rainbows/thread_pool.rb
index d7f0b14..2bae89b 100644
--- a/lib/rainbows/thread_pool.rb
+++ b/lib/rainbows/thread_pool.rb
@@ -55,10 +55,10 @@ module Rainbows
           rescue Errno::EINTR
             next
           rescue Errno::EBADF, TypeError
-            return
+            break
           end
         rescue Object => e
-          listen_loop_error(e) if LISTENERS.first
+          listen_loop_error(e)
         end while ! Thread.current[:quit] && LISTENERS.first
       }
     end