Actions
Bug #8845
closedTimeout::ExitException が意図せずに rescue される事がある
Description
timeout.rb の実装が内部的に利用している Timeout::ExitException の無名派生クラスが、
意図しないタイミングで rescue され、timeout処理が実行されないケースがある。
以下の例では、Timeout::Error が発生しない。
timeout 1 do
begin
sleep 10
rescue Exception
end
end
Actions
Like0
Like0Like0Like0Like0