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

* test/xmlrpc/webrick_testing.rb (WEBrick_Testing#start_server):

Like r32795, bind address should be specified.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2011-08-03 00:22:08 +00:00
parent a0b9f48674
commit deb0024af1
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 3 09:18:08 2011 URABE Shyouhei <shyouhei@ruby-lang.org>
* test/xmlrpc/webrick_testing.rb (WEBrick_Testing#start_server):
Like r32795, bind address should be specified.
Wed Aug 3 07:46:30 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* encoding.c (enc_find): mistakenly remained !. [Bug #5150]

View file

@ -13,6 +13,7 @@ module WEBrick_Testing
@__server_thread = Thread.new {
@__server = WEBrick::HTTPServer.new(
{
BindAddress: "localhost",
:Logger => DummyLog.new,
:AccessLog => [],
:StartCallback => proc { @__started = true }