I have this piece of ruby code in a loop:

pid = Process.spawn("my_process_command")
begin
    Timeout.timeout(16) do
        `my_timeout_command`
        Process.wait(pid)
    end
rescue
    system("clear")
    puts 'Process not finished in time, killing it'
    Process.kill('TERM', pid)
end

The problem is that once the Timeout::Error exception has been caught the block will be skipped and the loop does practically nothing. How can I fix this?

有帮助吗?

解决方案

You need to rescue specifically for Timeout:Error since Timeout::Error is not a standard error:

pid = Process.spawn("my_process_command")
begin
    Timeout.timeout(16) do
        `my_timeout_command`
        Process.wait(pid)
    end
rescue Timeout::Error
    system("clear")
    puts 'Process not finished in time, killing it'
    Process.kill('TERM', pid)
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top