summaryrefslogtreecommitdiff
path: root/lib/net/http.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 05:24:12 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 05:24:12 +0000
commitdbf9baeddf8679c0dfeb905d720a64e657861675 (patch)
treef7f7e3c48fa07119c4d21e0ea9d2952796951baa /lib/net/http.rb
parentb7528b5edb1f9148ea00ebb6151720e5943b3f0b (diff)
* lib/timeout.rb: Clarify timeout duration types. Patch by Alf Mikula.
[Ruby 1.9 - Bug #4791] * lib/net/http.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/http.rb')
-rw-r--r--lib/net/http.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 36fb418777..045967caa3 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -619,13 +619,15 @@ module Net #:nodoc:
# The port number to connect to.
attr_reader :port
- # Number of seconds to wait for the connection to open.
- # If the HTTP object cannot open a connection in this many seconds,
- # it raises a TimeoutError exception.
+ # Number of seconds to wait for the connection to open. Any number
+ # may be used, including Floats for fractional seconds. If the HTTP
+ # object cannot open a connection in this many seconds, it raises a
+ # TimeoutError exception.
attr_accessor :open_timeout
# Number of seconds to wait for one block to be read (via one read(2)
- # call). If the HTTP object cannot read data in this many seconds,
+ # call). Any number may be used, including Floats for fractional
+ # seconds. If the HTTP object cannot read data in this many seconds,
# it raises a TimeoutError exception.
attr_reader :read_timeout