DEV: Update uploads:list_posts_with_broken_images to recover from tombstone.

This commit is contained in:
Guo Xiang Tan
2018-09-10 17:01:11 +08:00
parent d4080c020f
commit 4a966c639d
2 changed files with 13 additions and 3 deletions

View File

@@ -43,10 +43,10 @@ class S3Helper
rescue Aws::S3::Errors::NoSuchKey
end
def copy(source, destination)
def copy(source, destination, options: {})
s3_bucket
.object(destination)
.copy_from(copy_source: File.join(@s3_bucket_name, source))
.copy_from(options.merge(copy_source: File.join(@s3_bucket_name, source)))
end
# make sure we have a cors config for assets