From 09e93cd05506023d38c471bcbc8189447f800524 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 5 Oct 2009 20:43:36 -0700 Subject: less error-prone timeouts for Thread models Avoid calling chmod on "false" leading to NoMethodError and rely entirely on LISTENERS.first being valid. --- lib/rainbows/thread_spawn.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rainbows/thread_spawn.rb') diff --git a/lib/rainbows/thread_spawn.rb b/lib/rainbows/thread_spawn.rb index 5d7e68e..7dcd2e4 100644 --- a/lib/rainbows/thread_spawn.rb +++ b/lib/rainbows/thread_spawn.rb @@ -22,7 +22,7 @@ module Rainbows # closing anything we IO.select on will raise EBADF trap(:USR1) { reopen_worker_logs(worker.nr) rescue nil } - trap(:QUIT) { alive = false; LISTENERS.map! { |s| s.close rescue nil } } + trap(:QUIT) { LISTENERS.map! { |s| s.close rescue nil } } [:TERM, :INT].each { |sig| trap(sig) { exit(0) } } # instant shutdown logger.info "worker=#{worker.nr} ready with ThreadSpawn" -- cgit v1.2.3-24-ge0c7