about summary refs log tree commit homepage
path: root/lib/rainbows/xepoll_thread_spawn
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-11-21 08:52:29 +0000
committerEric Wong <e@80x24.org>2015-11-21 08:55:00 +0000
commita5d88662a519406eea6f180a010af8ef829464e7 (patch)
tree77034a0a236921b1ab2c6c237ac92a016de49c10 /lib/rainbows/xepoll_thread_spawn
parent9e7fb4e9b5d97cc75892c8faaea46444d438eb61 (diff)
downloadrainbows-a5d88662a519406eea6f180a010af8ef829464e7.tar.gz
unicorn 5 will only support Ruby 1.9.3 and later, so remove
some checks for Hash#compare_by_identity and IO.copy_stream
which we know exist in Ruby 1.9.

Favor &:sym proc dispatch to avoid unnecessary captures and
bytecode size increases, too.

Finally, ensure we fail fast by converting some literal
hashes to use non-arrow syntax for symbolic keys.
Diffstat (limited to 'lib/rainbows/xepoll_thread_spawn')
-rw-r--r--lib/rainbows/xepoll_thread_spawn/client.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/rainbows/xepoll_thread_spawn/client.rb b/lib/rainbows/xepoll_thread_spawn/client.rb
index 67c5976..218db3e 100644
--- a/lib/rainbows/xepoll_thread_spawn/client.rb
+++ b/lib/rainbows/xepoll_thread_spawn/client.rb
@@ -27,8 +27,7 @@ module Rainbows::XEpollThreadSpawn::Client
   ep = SleepyPenguin::Epoll
   EP = ep.new
   IN = ep::IN | ep::ONESHOT
-  KATO = {}
-  KATO.compare_by_identity if KATO.respond_to?(:compare_by_identity)
+  KATO = {}.compare_by_identity
   LOCK = Mutex.new
   Rainbows.at_quit do
     clients = nil