diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | test/xmlrpc/webrick_testing.rb | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -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] diff --git a/test/xmlrpc/webrick_testing.rb b/test/xmlrpc/webrick_testing.rb index f112836a6a..b09862225e 100644 --- a/test/xmlrpc/webrick_testing.rb +++ b/test/xmlrpc/webrick_testing.rb @@ -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 } |