lib/celluloid/group/pool.rb in celluloid-0.17.0 vs lib/celluloid/group/pool.rb in celluloid-0.17.1
- old
+ new
@@ -91,10 +91,10 @@
queue = Queue.new
thread = Thread.new do
while proc = queue.pop
begin
proc.call
- rescue Exception => ex
+ rescue ::Exception => ex
Internals::Logger.crash("thread crashed", ex)
ensure
put thread
end
end