diff options
author | ThibG <thib@sitedethib.com> | 2019-07-08 02:24:25 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-07-08 02:24:25 +0200 |
commit | 87c1ad4ea3c4714e8698a697a380471cc2d2d496 (patch) | |
tree | 20f3969a473dc8995ed749ac8d80439bb35b6de4 | |
parent | 3ece6e25e6771c17bf79774564e6999003499f46 (diff) |
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 message
-rw-r--r-- | app/services/backup_service.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/backup_service.rb b/app/services/backup_service.rb index 4cfa22ab8..12e4fa8b4 100644 --- a/app/services/backup_service.rb +++ b/app/services/backup_service.rb @@ -142,5 +142,7 @@ class BackupService < BaseService io.write(buffer) end end + rescue Errno::ENOENT + Rails.logger.warn "Could not backup file #{filename}: file not found" end end |