* lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose"
[ruby-Bugs:1701] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fbf6744823
commit
0bbbb77d1a
@ -1,3 +1,8 @@
|
|||||||
|
Tue Aug 30 13:28:17 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||||
|
|
||||||
|
* lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose"
|
||||||
|
[ruby-Bugs:1701]
|
||||||
|
|
||||||
Tue Aug 30 12:45:15 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Aug 30 12:45:15 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (rb_f_send): do not call private methods if the receiver
|
* eval.c (rb_f_send): do not call private methods if the receiver
|
||||||
|
@ -180,7 +180,7 @@ module DRb
|
|||||||
ssl = @config.accept(soc)
|
ssl = @config.accept(soc)
|
||||||
self.class.new(uri, ssl, @config, true)
|
self.class.new(uri, ssl, @config, true)
|
||||||
rescue OpenSSL::SSL::SSLError
|
rescue OpenSSL::SSL::SSLError
|
||||||
warn("#{__FILE__}:#{__LINE__}: warning: #{$!.message} (#{$!.class})") if verbose
|
warn("#{__FILE__}:#{__LINE__}: warning: #{$!.message} (#{$!.class})") if self[:verbose]
|
||||||
retry
|
retry
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user