mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/http.rb: Net::HTTP#finish is used to manually close
connections. [Ruby 1.9 - Bug #5045] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c1fa17c138
commit
a58c76cc20
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Jul 22 13:55:59 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* lib/net/http.rb: Net::HTTP#finish is used to manually close
|
||||||
|
connections. [Ruby 1.9 - Bug #5045]
|
||||||
|
|
||||||
Fri Jul 22 13:51:29 2011 Eric Hodel <drbrain@segment7.net>
|
Fri Jul 22 13:51:29 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* ext/readline/readline.c: Add examples for Readline.completion_proc=.
|
* ext/readline/readline.c: Add examples for Readline.completion_proc=.
|
||||||
|
|
|
@ -108,7 +108,7 @@ module Net #:nodoc:
|
||||||
# If you wish to re-use a connection across multiple HTTP requests without
|
# If you wish to re-use a connection across multiple HTTP requests without
|
||||||
# automatically closing it you can use ::new instead of ::start. #request
|
# automatically closing it you can use ::new instead of ::start. #request
|
||||||
# will automatically open a connection to the server if one is not currently
|
# will automatically open a connection to the server if one is not currently
|
||||||
# open. You can manually close the connection with #close.
|
# open. You can manually close the connection with #finish.
|
||||||
#
|
#
|
||||||
# === Response Data
|
# === Response Data
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue