FIX: AWS S3 errors don't necessarily include a message

* If the error doesn't have a message, the class name will help
* example:
  before: "Failed to download #{filename} because "
  after: "Failed to download #{filename} because Aws::S3::Errors::NotFound"
This commit is contained in:
Michael Brown 2020-08-12 16:01:14 -04:00 committed by Michael Brown
parent 95a454abb6
commit c25dc43f54
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ class S3Helper
def download_file(filename, destination_path, failure_message = nil)
object(filename).download_file(destination_path)
rescue => err
raise failure_message&.to_s || "Failed to download #{filename} because #{err.message}"
raise failure_message&.to_s || "Failed to download #{filename} because #{err.message.length > 0 ? err.message : err.class.to_s}"
end
def s3_client