Updated LinkCrawlWorker retry to 3

• Updated:
- LinkCrawlWorker retry to 3
This commit is contained in:
mgabdev 2020-05-27 13:26:20 -04:00
parent 294883da56
commit a2a070510a
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
class LinkCrawlWorker
include Sidekiq::Worker
sidekiq_options queue: 'pull', retry: 0
sidekiq_options queue: 'pull', retry: 3
def perform(status_id)
FetchLinkCardService.new.call(Status.find(status_id))