aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-04 17:48:51 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-04 17:48:51 +0000
commit734930335be9bd921895539c80d7c71e04681969 (patch)
tree6c3d9bb49b92a0fc956533aa9adc466296f8a340 /spec
parentded7fa6545aad30a62c95ffaab2ad19306930d58 (diff)
downloadruby-734930335be9bd921895539c80d7c71e04681969.tar.gz
Workaround Travis CI issue by hardcoding localhost
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/library/net/http/http/fixtures/http_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/net/http/http/fixtures/http_server.rb b/spec/ruby/library/net/http/http/fixtures/http_server.rb
index 198fef36fb..49e8f437cc 100644
--- a/spec/ruby/library/net/http/http/fixtures/http_server.rb
+++ b/spec/ruby/library/net/http/http/fixtures/http_server.rb
@@ -64,7 +64,7 @@ module NetHTTPSpecs
def start_server
server_config = {
- BindAddress: "localhost",
+ BindAddress: "127.0.0.1",
Port: 0,
Logger: WEBrick::Log.new(NullWriter.new),
AccessLog: [],