1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/http.rb (Net::HTTP#initialize):

default value of Net::HTTP#open_timeout is now 60 (was nil).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2015-11-07 16:48:49 +00:00
parent f9806460e9
commit 52e1c3b0ab
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Nov 8 01:31:27 2015 NARUSE, Yui <naruse@ruby-lang.org>
* lib/net/http.rb (Net::HTTP#initialize):
default value of Net::HTTP#open_timeout is now 60 (was nil).
Sat Nov 7 12:18:05 2015 Eric Wong <e@80x24.org>
* string.c (id_to_s): remove redundant variable

3
NEWS
View file

@ -185,6 +185,9 @@ with all sufficient information, see the ChangeLog file.
* Coverage.peek_result: new method to allow coverage to be captured without
stopping the coverage tool.
* Net::HTTP
* default value of Net::HTTP#open_timeout is now 60 (was nil).
* Net::Telnet
* Net::Telnet is extracted to net-telnet gem. It's unmaintain code.

View file

@ -641,7 +641,7 @@ module Net #:nodoc:
@close_on_empty_response = false
@socket = nil
@started = false
@open_timeout = nil
@open_timeout = 60
@read_timeout = 60
@continue_timeout = nil
@debug_output = nil