Do not suggest system_timer for JRuby.

This commit is contained in:
Robert Jackson 2012-04-26 08:16:20 -04:00
parent bb69f7b927
commit e8ca21f21f

View File

@ -37,7 +37,7 @@ module Faraday
require RUBY_VERSION < '1.9' ? 'system_timer' : 'timeout'
rescue LoadError
require 'timeout'
warn "Faraday: you may want to install system_timer for reliable timeouts"
warn "Faraday: you may want to install system_timer for reliable timeouts" unless defined?(JRUBY_VERSION)
ensure
Timer = defined?(::SystemTimer) ? ::SystemTimer : ::Timeout
end