diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-03 00:22:08 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-03 00:22:08 +0000 |
commit | deb0024af1c73dd3c40dc908b3b728d812763849 (patch) | |
tree | 575e5ea9d050bcb11a9532e9b4a4f39592bb98df /test/xmlrpc | |
parent | a0b9f48674f104d79b374b104635ab4d88d32ec8 (diff) | |
download | ruby-deb0024af1c73dd3c40dc908b3b728d812763849.tar.gz |
* 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
Diffstat (limited to 'test/xmlrpc')
-rw-r--r-- | test/xmlrpc/webrick_testing.rb | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |