У меня есть контроллер:
class EventsController < ApplicationController
def index
begin
SystemTimer.timeout_after(10, CustomTimeoutError) do
sleep(11)
end
rescue CustomTimeoutError => e
# swallow
end
end
end
По какой-то причине оператор спасения не улавливает тайм-аут, а вместо этого его пузыриваются до самого верха, трассировка стека сбрасывается в консоль и т. Д. Использование значения по умолчанию Timeout :: Error имеет тот же эффект. Это происходит только на производстве, а не на моей машине разработки. Это как если бы кто-то другой следил за тайм-аутами и захватывал их до того, как это событие достигло моего спасения.
Полученная трассировка стека выглядит так:
[GEM_ROOT]/gems/SystemTimer-1.2/lib/system_timer/concurrent_timer_pool.rb:63:in `read_reply'
vendor/gems/redis-1.0.4/lib/redis/client.rb:444:in `process_command'
vendor/gems/redis-1.0.4/lib/redis/client.rb:442:in `map'
vendor/gems/redis-1.0.4/lib/redis/client.rb:442:in `process_command'
vendor/gems/redis-1.0.4/lib/redis/client.rb:431:in `raw_call_command'
vendor/gems/redis-1.0.4/lib/redis/client.rb:452:in `call'
vendor/gems/redis-1.0.4/lib/redis/client.rb:452:in `maybe_lock'
vendor/gems/redis-1.0.4/lib/redis/client.rb:428:in `raw_call_command'
vendor/gems/redis-1.0.4/lib/redis/client.rb:332:in `call_command'
vendor/gems/redis-1.0.4/lib/redis/client.rb:381:in `method_missing'
vendor/gems/ohm-0.0.35/lib/ohm/collection.rb:179:in `size'
vendor/gems/ohm-0.0.35/lib/ohm/collection.rb:65:in `empty?'
vendor/gems/ohm-0.0.35/lib/ohm/collection.rb:33:in `sort'
vendor/gems/ohm-0.0.35/lib/ohm/collection.rb:48:in `first'
vendor/gems/ohm-0.0.35/lib/ohm.rb:129:in `first'
lib/twitter_helper.rb:58:in `get_twitter_searches'
lib/twitter_helper.rb:57:in `each'
lib/twitter_helper.rb:57:in `get_twitter_searches'
lib/twitter_helper.rb:100:in `get_twitter_searches_or_messages'
app/controllers/events_controller.rb:66:in `show'
[GEM_ROOT]/gems/SystemTimer-1.2/lib/system_timer.rb:56:in `timeout_after'
app/controllers/events_controller.rb:65:in `show'
vendor/rails/actionpack/lib/action_controller/base.rb:1331:in `send'