forked from treehouse/mastodon
Fix BackupService crashing when an attachment is missing (#11241)
* Fix BackupService crashing when an attachment is missing For various reasons such as admin error or out-of-sync media and database backups, it might be possible for local attachments to be lost. This commit allows the BackupService to continue its work even if some media file is missing. * Change error messagesignup-info-prompt
parent
3ece6e25e6
commit
87c1ad4ea3
|
@ -142,5 +142,7 @@ class BackupService < BaseService
|
||||||
io.write(buffer)
|
io.write(buffer)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
rescue Errno::ENOENT
|
||||||
|
Rails.logger.warn "Could not backup file #{filename}: file not found"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue