FIX: skip upload recovery if file not found in s3

This commit is contained in:
Vinoth Kannan
2019-05-21 00:06:36 +05:30
parent 555305325a
commit 2941c77abc

View File

@ -85,6 +85,7 @@ class S3Inventory
result = connection.exec("SELECT * FROM #{table_name} WHERE key LIKE '%original/%/#{sha1}%'")
if result.count >= 1
begin
key = result[0]["key"]
data = @s3_helper.object(key).data
filename = (data.content_disposition&.match(/filename=\"(.*)\"/) || [])[1]
@ -99,6 +100,9 @@ class S3Inventory
)
upload.save!(validate: false)
upload_id = upload.id
rescue Aws::S3::Errors::NotFound
next
end
end
upload_id