Project

General

Profile

Bug #16780

Updated by rgerard (Ryan Gerard) almost 4 years ago

This is my first time writing up an issue for this community, so I apologize if this is written in an abnormal way than your normal issues. 

 We recently upgraded from ruby 2.6.5 to 2.7.1. Almost immediately, we started seeing issues with some of our application code that utilizes Net::FTP. All calls to #put to an external FTP server we communicate with were resulting in a Net::ReadTimeout exception being throw. Upon examination of the external FTP server, we can see that the file was successfully transferred, although the Net::ReadTimeout exception begin thrown caused confusion on our end. 

 Looking over the changes that were part of the ruby 2.7.0 release, I believe this commit (https://github.com/ruby/ruby/commit/5be34d6a3310065850c0c530db6936415124b5d9), which was a fix for this bug (https://bugs.ruby-lang.org/issues/16413) is the root of the issue. I translated the japanese, and I understand that the change to add the `begin` and `ensure` blocks were to make sure the connection was closed in case an exception is thrown during the transfer. However, the additional change to the connection read_timeout to 1 second was a little puzzling. I can see that this logic was copied from `retrbinary` and `retrlines`, but I'm uncertain why the connection read_timeout should be changed to 1 second. 

 I believe the right fix is to remove the change to the connection read_timeout. 

 Here is the stack trace for the exception we're getting during the call to #put: 

 ``` ruby 
 Net::ReadTimeout with #<Socket:(closed)> 

 /usr/local/lib/ruby/2.7.0/net/protocol.rb:217:in `rbuf_fill' 
 /usr/local/lib/ruby/2.7.0/net/protocol.rb:159:in `read' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:1475:in `read' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:693:in `block (2 levels) in storbinary' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:308:in `with_binary' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:684:in `block in storbinary' 
 /usr/local/lib/ruby/2.7.0/monitor.rb:202:in `synchronize' 
 /usr/local/lib/ruby/2.7.0/monitor.rb:202:in `mon_synchronize' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:683:in `storbinary' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:843:in `putbinaryfile' 
 /usr/local/lib/ruby/2.7.0/net/ftp.rb:871:in `put' 
 ``` 

Back