1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

fix typo in request timeout

This commit is contained in:
Gabriele Cirulli 2012-12-29 17:29:09 +01:00
parent 2a32c7b3db
commit 7077615bb0

View file

@ -165,7 +165,7 @@ module RestClient
# disable the timeout if the timeout value is -1
net.read_timeout = nil if @timeout == -1
net.out_timeout = nil if @open_timeout == -1
net.open_timeout = nil if @open_timeout == -1
RestClient.before_execution_procs.each do |before_proc|
before_proc.call(req, args)