2015-12-16 08:07:31 +03:00
|
|
|
# frozen_string_literal: false
|
2011-05-22 06:27:09 +04:00
|
|
|
# Timeout long-running blocks
|
1999-08-13 09:45:20 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# == Synopsis
|
2005-11-22 02:58:10 +03:00
|
|
|
#
|
2006-12-31 18:02:22 +03:00
|
|
|
# require 'timeout'
|
|
|
|
# status = Timeout::timeout(5) {
|
2011-05-22 06:27:09 +04:00
|
|
|
# # Something that should be interrupted if it takes more than 5 seconds...
|
2006-12-31 18:02:22 +03:00
|
|
|
# }
|
1999-08-13 09:45:20 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# == Description
|
1999-08-13 09:45:20 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# Timeout provides a way to auto-terminate a potentially long-running
|
|
|
|
# operation if it hasn't finished in a fixed amount of time.
|
1999-08-13 09:45:20 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# Previous versions didn't use a module for namespacing, however
|
|
|
|
# #timeout is provided for backwards compatibility. You
|
2017-11-17 18:08:03 +03:00
|
|
|
# should prefer Timeout.timeout instead.
|
2003-07-03 15:02:53 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# == Copyright
|
2003-07-03 15:02:53 +04:00
|
|
|
#
|
2006-12-31 18:02:22 +03:00
|
|
|
# Copyright:: (C) 2000 Network Applied Communication Laboratory, Inc.
|
|
|
|
# Copyright:: (C) 2000 Information-technology Promotion Agency, Japan
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-07-03 15:02:53 +04:00
|
|
|
module Timeout
|
2020-07-28 18:31:52 +03:00
|
|
|
VERSION = "0.1.0"
|
|
|
|
|
2017-11-17 18:08:03 +03:00
|
|
|
# Raised by Timeout.timeout when the block times out.
|
2008-02-13 19:43:18 +03:00
|
|
|
class Error < RuntimeError
|
2014-01-07 16:21:51 +04:00
|
|
|
attr_reader :thread
|
2013-08-26 10:27:48 +04:00
|
|
|
|
2014-01-08 08:12:39 +04:00
|
|
|
def self.catch(*args)
|
|
|
|
exc = new(*args)
|
2014-01-07 16:21:51 +04:00
|
|
|
exc.instance_variable_set(:@thread, Thread.current)
|
2014-01-07 07:43:08 +04:00
|
|
|
::Kernel.catch(exc) {yield exc}
|
2013-08-26 10:27:48 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def exception(*)
|
2014-11-17 06:42:49 +03:00
|
|
|
# TODO: use Fiber.current to see if self can be thrown
|
2014-01-08 08:12:39 +04:00
|
|
|
if self.thread == Thread.current
|
|
|
|
bt = caller
|
|
|
|
begin
|
|
|
|
throw(self, bt)
|
2014-11-16 13:11:08 +03:00
|
|
|
rescue UncaughtThrowError
|
2014-01-08 08:12:39 +04:00
|
|
|
end
|
|
|
|
end
|
2013-08-26 10:27:48 +04:00
|
|
|
self
|
|
|
|
end
|
2008-02-13 19:43:18 +03:00
|
|
|
end
|
|
|
|
|
2011-05-16 22:34:41 +04:00
|
|
|
# :stopdoc:
|
2008-02-13 19:43:18 +03:00
|
|
|
THIS_FILE = /\A#{Regexp.quote(__FILE__)}:/o
|
|
|
|
CALLER_OFFSET = ((c = caller[0]) && THIS_FILE =~ c) ? 1 : 0
|
2015-07-14 05:34:53 +03:00
|
|
|
private_constant :THIS_FILE, :CALLER_OFFSET
|
2011-05-16 22:34:41 +04:00
|
|
|
# :startdoc:
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2013-03-31 06:01:17 +04:00
|
|
|
# Perform an operation in a block, raising an error if it takes longer than
|
|
|
|
# +sec+ seconds to complete.
|
2011-05-22 06:27:09 +04:00
|
|
|
#
|
2011-06-16 09:24:12 +04:00
|
|
|
# +sec+:: Number of seconds to wait for the block to terminate. Any number
|
2013-03-31 06:01:17 +04:00
|
|
|
# may be used, including Floats to specify fractional seconds. A
|
|
|
|
# value of 0 or +nil+ will execute the block without any timeout.
|
2011-05-22 06:27:09 +04:00
|
|
|
# +klass+:: Exception Class to raise if the block fails to terminate
|
|
|
|
# in +sec+ seconds. Omitting will use the default, Timeout::Error
|
2016-09-07 15:32:02 +03:00
|
|
|
# +message+:: Error message to raise with Exception Class.
|
2016-09-07 11:21:56 +03:00
|
|
|
# Omitting will use the default, "execution expired"
|
2011-05-22 06:27:09 +04:00
|
|
|
#
|
|
|
|
# Returns the result of the block *if* the block completed before
|
|
|
|
# +sec+ seconds, otherwise throws an exception, based on the value of +klass+.
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
#
|
2013-11-10 20:05:04 +04:00
|
|
|
# The exception thrown to terminate the given block cannot be rescued inside
|
2019-06-05 05:19:37 +03:00
|
|
|
# the block unless +klass+ is given explicitly. However, the block can use
|
|
|
|
# ensure to prevent the handling of the exception. For that reason, this
|
|
|
|
# method cannot be relied on to enforce timeouts for untrusted blocks.
|
2013-11-10 20:05:04 +04:00
|
|
|
#
|
2011-05-22 06:27:09 +04:00
|
|
|
# Note that this is both a method of module Timeout, so you can <tt>include
|
|
|
|
# Timeout</tt> into your classes so they have a #timeout method, as well as
|
|
|
|
# a module method, so you can call it directly as Timeout.timeout().
|
2016-09-07 11:21:56 +03:00
|
|
|
def timeout(sec, klass = nil, message = nil) #:yield: +sec+
|
2012-12-05 19:48:11 +04:00
|
|
|
return yield(sec) if sec == nil or sec.zero?
|
2016-09-07 11:21:56 +03:00
|
|
|
message ||= "execution expired".freeze
|
2015-12-18 18:46:50 +03:00
|
|
|
from = "from #{caller_locations(1, 1)[0]}" if $DEBUG
|
2013-08-27 12:18:50 +04:00
|
|
|
e = Error
|
2014-01-07 07:42:37 +04:00
|
|
|
bl = proc do |exception|
|
2012-12-07 14:36:59 +04:00
|
|
|
begin
|
|
|
|
x = Thread.current
|
|
|
|
y = Thread.start {
|
2015-12-18 18:46:50 +03:00
|
|
|
Thread.current.name = from
|
2012-12-07 14:36:59 +04:00
|
|
|
begin
|
|
|
|
sleep sec
|
|
|
|
rescue => e
|
|
|
|
x.raise e
|
|
|
|
else
|
2013-08-27 12:18:50 +04:00
|
|
|
x.raise exception, message
|
2011-05-18 15:31:58 +04:00
|
|
|
end
|
2012-12-07 14:36:59 +04:00
|
|
|
}
|
|
|
|
return yield(sec)
|
|
|
|
ensure
|
|
|
|
if y
|
|
|
|
y.kill
|
|
|
|
y.join # make sure y is dead.
|
2010-04-19 07:46:17 +04:00
|
|
|
end
|
2011-05-18 15:31:58 +04:00
|
|
|
end
|
2003-07-03 15:02:53 +04:00
|
|
|
end
|
2014-01-07 07:43:08 +04:00
|
|
|
if klass
|
|
|
|
begin
|
|
|
|
bl.call(klass)
|
|
|
|
rescue klass => e
|
|
|
|
bt = e.backtrace
|
|
|
|
end
|
|
|
|
else
|
2015-07-10 16:05:53 +03:00
|
|
|
bt = Error.catch(message, &bl)
|
2014-01-07 07:43:08 +04:00
|
|
|
end
|
2015-07-11 06:45:54 +03:00
|
|
|
level = -caller(CALLER_OFFSET).size-2
|
2013-08-26 10:27:48 +04:00
|
|
|
while THIS_FILE =~ bt[level]
|
|
|
|
bt.delete_at(level)
|
|
|
|
end
|
2013-08-27 12:18:50 +04:00
|
|
|
raise(e, message, bt)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
|
2003-07-03 15:02:53 +04:00
|
|
|
module_function :timeout
|
|
|
|
end
|
|
|
|
|
2015-07-13 13:11:38 +03:00
|
|
|
def timeout(*args, &block)
|
2017-12-12 14:56:25 +03:00
|
|
|
warn "Object##{__method__} is deprecated, use Timeout.timeout instead.", uplevel: 1
|
2015-07-13 13:11:38 +03:00
|
|
|
Timeout.timeout(*args, &block)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
|
|
|
|
# Another name for Timeout::Error, defined for backwards compatibility with
|
|
|
|
# earlier versions of timeout.rb.
|
2006-12-31 18:02:22 +03:00
|
|
|
TimeoutError = Timeout::Error
|
2015-07-30 07:20:00 +03:00
|
|
|
class Object
|
|
|
|
deprecate_constant :TimeoutError
|
|
|
|
end
|