Feature #6088
closedAdd Net::ReadTimeout to distinguish which operation failed
Description
This relates to #5765 which improves use of timeout in net/ and #6001 which introduces Net::HTTP::OpenTimeout.
This patch introduces Net::ReadTimeout as a subclass of Timeout::Error and raises it when a read operation takes too long. Users may use this to distinguish between timeouts for reading and timeouts for connecting to a remote host. For a read timeout the user may wish to retry the operation.
Files
Updated by drbrain (Eric Hodel) over 12 years ago
- File net.modernize_timeout_usage.open_timeout.patch net.modernize_timeout_usage.open_timeout.patch added
The attached patch adds Net::ReadTimeout to Net::Telnet.
Updated by naruse (Yui NARUSE) over 12 years ago
I don't object the direction but it should have more document about the new Exception.
Updated by mame (Yusuke Endoh) over 12 years ago
- Status changed from Open to Assigned
- Assignee set to drbrain (Eric Hodel)
Updated by drbrain (Eric Hodel) over 12 years ago
- File net.read_timeout.patch net.read_timeout.patch added
I have updated all the documentation for OpenTimeout and ReadTimeout along with the addition of Net::ReadTimeout.
Updated by mame (Yusuke Endoh) over 12 years ago
- Assignee changed from drbrain (Eric Hodel) to naruse (Yui NARUSE)
Updated by naruse (Yui NARUSE) over 12 years ago
- Assignee changed from naruse (Yui NARUSE) to drbrain (Eric Hodel)
You can commit it.
Updated by drbrain (Eric Hodel) over 12 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r35304.
Eric, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- lib/net/protocol.rb (module Net): Added ReadTimeout to match
OpenTimeout. ReadTimeout is now raised by rbuf_fill instead of
Timeout::Error to help users distinguish what type of timeout
occurred. [ruby-trunk - Feature #6088] - lib/net/pop.rb (module Net): Updated documentation for ReadTimeout
and OpenTimeout. - lib/net/http.rb (module Net): ditto
- lib/net/smtp.rb (module Net): ditto
- lib/net/telnet.rb (module Net): Net::ReadTimeout is now raised in
waitfor to match Net::Protocol. - test/net/http/test_http.rb: Updated Timeout::Error expectation to
Net::ReadTimeout. - test/net/ftp/test_ftp.rb: ditto