mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/http.rb (Net::HTTP#start): should check whether HTTP session is opened before finishing. (ruby-bugs-ja:PR#463)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
445c938f7b
commit
ee6a0ecbcb
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed May 14 12:23:46 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/http.rb (Net::HTTP#start): should check whether HTTP
|
||||
session is opened before finishing. (ruby-bugs-ja:PR#463)
|
||||
|
||||
Wed May 14 09:12:55 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/http.rb: reduce warning. (ruby-bugs-ja:PR#462)
|
||||
|
|
|
@ -721,7 +721,7 @@ module Net
|
|||
do_start
|
||||
return yield(self)
|
||||
ensure
|
||||
finish
|
||||
finish if @started
|
||||
end
|
||||
end
|
||||
do_start
|
||||
|
|
Loading…
Reference in a new issue