Change retry count for LinkCrawlWorker to 3

This commit is contained in:
Mina Her 2023-07-11 19:26:04 +09:00
parent 1e3b19230a
commit 8b277f916c
No known key found for this signature in database
GPG Key ID: 75A40F0CDF1A7622
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))