Add rescue to ignore fstore errors

This commit is contained in:
Wedge 2018-09-03 23:44:50 +03:00
parent 743eb0ee45
commit c0b2a194b9
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ module AbfWorkerService
sha1 = nil
TRIES.times do |i|
sha1 = build_list.packages.pluck(:sha1).find do |sha1|
!FileStoreService::File.new(sha1: sha1).exist?
!FileStoreService::File.new(sha1: sha1).exist? rescue nil
end
break if !sha1.present?
sleep 2**i