diff options
author | mohamed <[email protected]> | 2021-01-13 14:03:14 -0800 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-04-28 10:58:13 +0900 |
commit | 8a2b7b79ee8a1ba487c0b5064c0730b98f5ba438 (patch) | |
tree | 4b9f9ab38acf9cf61d83789937f6ac6a19a9b90c /lib | |
parent | e22626f08e17c7a1f74b4e31c180d57da7865f4a (diff) |
[ruby/net-http] Replace Timeout.timeout in Net:HTTP#connect
Use Socket.tcp's connect_timeout option instead
https://github.com/ruby/net-http/commit/753cae3bbc
Diffstat (limited to 'lib')
-rw-r--r-- | lib/net/http.rb | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb index 629d678d1a..33f8b567bd 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -981,14 +981,13 @@ module Net #:nodoc: end D "opening connection to #{conn_addr}:#{conn_port}..." - s = Timeout.timeout(@open_timeout, Net::OpenTimeout) { - begin - TCPSocket.open(conn_addr, conn_port, @local_host, @local_port) - rescue => e - raise e, "Failed to open TCP connection to " + - "#{conn_addr}:#{conn_port} (#{e.message})" - end - } + begin + s = Socket.tcp conn_addr, conn_port, @local_host, @local_port, connect_timeout: @open_timeout + rescue => e + e = Net::OpenTimeout.new(e) if e.is_a?(Errno::ETIMEDOUT) #for compatibility with previous versions + raise e, "Failed to open TCP connection to " + + "#{conn_addr}:#{conn_port} (#{e.message})" + end s.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1) D "opened" if use_ssl? |