lib/rainbows/join_threads.rb in rainbows-4.7.0 vs lib/rainbows/join_threads.rb in rainbows-5.0.0
- old
+ new
@@ -3,15 +3,15 @@
# This module only gets loaded on shutdown
module Rainbows::JoinThreads
# blocking acceptor threads must be forced to run
def self.acceptors(threads)
- expire = Time.now + Rainbows.server.timeout
+ expire = Rainbows.now + Rainbows.server.timeout
threads.delete_if do |thr|
Rainbows.tick
begin
# blocking accept() may not wake up properly
- thr.raise(Errno::EINTR) if Time.now > expire && thr.stop?
+ thr.raise(Errno::EINTR) if Rainbows.now > expire && thr.stop?
thr.run
thr.join(0.01)
rescue
true