Ignore RecordNotUnique errors in LinkCrawlWorker (#28748)

This commit is contained in:
Jeong Arm 2024-01-16 17:35:54 +09:00 committed by GitHub
parent f09035cc3f
commit f0abba67db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ class LinkCrawlWorker
def perform(status_id)
FetchLinkCardService.new.call(Status.find(status_id))
rescue ActiveRecord::RecordNotFound
rescue ActiveRecord::RecordNotFound, ActiveRecord::RecordNotUnique
true
end
end