aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/http.rb')
-rw-r--r--lib/net/http.rb17
1 files changed, 8 insertions, 9 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 8ba15e4054..31cbb7a866 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -942,15 +942,14 @@ module Net #:nodoc:
end
D "opening connection to #{conn_address}:#{conn_port}..."
- begin
- s = Socket.tcp(conn_address, conn_port, @local_host, @local_port, connect_timeout: @open_timeout)
- rescue Errno::ETIMEDOUT => e
- raise Net::OpenTimeout, "Failed to open TCP connection to " +
- "#{conn_address}:#{conn_port} (#{e.message})"
- rescue => e
- raise e, "Failed to open TCP connection to " +
- "#{conn_address}:#{conn_port} (#{e.message})"
- end
+ s = Timeout.timeout(@open_timeout, Net::OpenTimeout) {
+ begin
+ TCPSocket.open(conn_address, conn_port, @local_host, @local_port)
+ rescue => e
+ raise e, "Failed to open TCP connection to " +
+ "#{conn_address}:#{conn_port} (#{e.message})"
+ end
+ }
s.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, 1)
D "opened"
if use_ssl?