ActionsLike0
Bug #8845
closedTimeout::ExitException が意図せずに rescue される事がある
Description
timeout.rb の実装が内部的に利用している Timeout::ExitException の無名派生クラスが、
意図しないタイミングで rescue され、timeout処理が実行されないケースがある。
以下の例では、Timeout::Error が発生しない。
timeout 1 do
begin
sleep 10
rescue Exception
end
end
Updated by sorah (Sorah Fukumori) over 11 years ago
- Status changed from Open to Rejected
Updated by sorah (Sorah Fukumori) over 11 years ago
- Status changed from Rejected to Open
Updated by sorah (Sorah Fukumori) over 11 years ago
- Status changed from Open to Rejected
ActionsLike0