Fix backups stopping due to read timeouts (#12281)
* Make BackupService resilient to read timeouts If an attachment read times out, assume that the resources is inaccessible and continue the backup without it. This fixes #12280. * Both errors on one line
This commit is contained in:
parent
7a81346d55
commit
7e074610a6
|
@ -165,7 +165,7 @@ class BackupService < BaseService
|
||||||
io.write(buffer)
|
io.write(buffer)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
rescue Errno::ENOENT
|
rescue Errno::ENOENT, Seahorse::Client::NetworkingError
|
||||||
Rails.logger.warn "Could not backup file #{filename}: file not found"
|
Rails.logger.warn "Could not backup file #{filename}: file not found"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue