PERF: Correct should_skip? logic in `s3:upload` (#18862)

This task is supposed to skip uploading if the asset is already present in S3. However, when a bucket 'folder path' was configured, this logic was broken and so the assets would be re-uploaded every time.

This commit fixes that logic to include the bucket 'folder path' in the check
This commit is contained in:
David Taylor 2022-11-04 17:50:46 +00:00 committed by GitHub
parent 38bb00edce
commit b18ebc9648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ end
def should_skip?(path)
return false if ENV['FORCE_S3_UPLOADS']
@existing_assets ||= Set.new(helper.list("assets/").map(&:key))
path = File.join(helper.s3_bucket_folder_path, path) if helper.s3_bucket_folder_path
@existing_assets.include?(path)
end