about summary refs log tree commit homepage
path: root/lib/rainbows/fiber_pool.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-22 02:38:40 +0000
committerEric Wong <normalperson@yhbt.net>2010-10-22 18:37:45 +0000
commit03806d2b44c2d3cee75258ee9e83d671e751baeb (patch)
tree765c10c2dd1910781fe00e1a636d5d2dec0bb56a /lib/rainbows/fiber_pool.rb
parent15631717fce044fbad2f386a7b1c7daf4bdd83d2 (diff)
downloadrainbows-03806d2b44c2d3cee75258ee9e83d671e751baeb.tar.gz
Rainbows::Client takes care of the I/O wait/read-ability
for us already.
Diffstat (limited to 'lib/rainbows/fiber_pool.rb')
-rw-r--r--lib/rainbows/fiber_pool.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/fiber_pool.rb b/lib/rainbows/fiber_pool.rb
index c0d2ba7..18f43de 100644
--- a/lib/rainbows/fiber_pool.rb
+++ b/lib/rainbows/fiber_pool.rb
@@ -30,7 +30,7 @@ module Rainbows
         schedule do |l|
           fib = pool.shift or break # let another worker process take it
           if io = l.kgio_tryaccept
-            fib.resume(Fiber::IO.new(io, fib))
+            fib.resume(io)
           else
             pool << fib
           end