about summary refs log tree commit homepage
path: root/lib/rainbows/never_block.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-20 03:07:31 +0000
committerEric Wong <normalperson@yhbt.net>2011-03-20 03:07:31 +0000
commitc7e75cfe241a621f50c750720c47149a156e8e7f (patch)
treefc00265a91e54cd14af77da683235ecc0a865185 /lib/rainbows/never_block.rb
parentd327a0d468e5b5cfb05bb56621fb22d156ce3a40 (diff)
downloadrainbows-c7e75cfe241a621f50c750720c47149a156e8e7f.tar.gz
Run under 1.9.3dev
Diffstat (limited to 'lib/rainbows/never_block.rb')
-rw-r--r--lib/rainbows/never_block.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/never_block.rb b/lib/rainbows/never_block.rb
index bcdaa3c..a11b81d 100644
--- a/lib/rainbows/never_block.rb
+++ b/lib/rainbows/never_block.rb
@@ -28,7 +28,7 @@ module Rainbows::NeverBlock
     DEFAULTS.each { |k,v| o[k] ||= v }
     Integer === o[:pool_size] && o[:pool_size] > 0 or
       raise ArgumentError, "pool_size must a be an Integer > 0"
-    mod = Rainbows.const_get(o[:backend])
+    Rainbows.const_get(o[:backend])
     require "never_block" # require EM first since we need a higher version
   end