diff options
author | eregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-04 17:48:51 +0000 |
---|---|---|
committer | eregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-04 17:48:51 +0000 |
commit | e7535c6eaa87813d6ce6591c200f1fce7ee16ae2 (patch) | |
tree | 6c3d9bb49b92a0fc956533aa9adc466296f8a340 /spec | |
parent | a9fd7d9396285b92a3ae3af215317ff5f204473c (diff) | |
download | ruby-e7535c6eaa87813d6ce6591c200f1fce7ee16ae2.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.rb | 2 |
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: [], |