commit 29409f930253495276dbca2f57f2b8084d5d8170 Author: Jason Stephenson Date: Wed Aug 31 08:57:21 2022 -0400 Set Net::FTP Timeout to 15 seconds in O::U::RemoteAccount Because B&T are still having issues getting their FTP server back up and running, we set a timeout of 15 seconds for Net::FTP in OpenILS::Utils::RemoteAccount. diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm index b4a8f1ecf1..bf11a1aa3c 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/RemoteAccount.pm @@ -542,7 +542,7 @@ sub _slash_path { sub _ftp { my $self = shift; - my %options = (); + my %options = (Timeout => 15); $self->{ftp} and return $self->{ftp}; # caching foreach (qw/debug port/) { $options{ucfirst($_)} = $self->{$_} if $self->{$_};