mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: do not validate uploads when running uploads:fix_missing_s3
task (#13096)
This commit is contained in:
parent
1a620cb01f
commit
626b8465ba
@ -1036,7 +1036,8 @@ def fix_missing_s3
|
|||||||
else
|
else
|
||||||
# we do not fix sha, it may be wrong for arbitrary reasons, if we correct it
|
# we do not fix sha, it may be wrong for arbitrary reasons, if we correct it
|
||||||
# we may end up breaking posts
|
# we may end up breaking posts
|
||||||
upload.update!(etag: fixed_upload.etag, url: fixed_upload.url, verification_status: Upload.verification_statuses[:unchecked])
|
upload.assign_attributes(etag: fixed_upload.etag, url: fixed_upload.url, verification_status: Upload.verification_statuses[:unchecked])
|
||||||
|
upload.save!(validate: false)
|
||||||
|
|
||||||
OptimizedImage.where(upload_id: upload.id).destroy_all
|
OptimizedImage.where(upload_id: upload.id).destroy_all
|
||||||
rebake_ids = PostUpload.where(upload_id: upload.id).pluck(:post_id)
|
rebake_ids = PostUpload.where(upload_id: upload.id).pluck(:post_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user