This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-12-12 21:12:19 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ThreadResolveWorker
|
|
|
|
include Sidekiq::Worker
|
2019-02-28 15:22:21 +01:00
|
|
|
include ExponentialBackoff
|
2016-12-12 21:12:19 +01:00
|
|
|
|
2017-11-11 16:49:04 +01:00
|
|
|
sidekiq_options queue: 'pull', retry: 3
|
|
|
|
|
2016-12-12 21:12:19 +01:00
|
|
|
def perform(child_status_id, parent_url)
|
|
|
|
child_status = Status.find(child_status_id)
|
|
|
|
parent_status = FetchRemoteStatusService.new.call(parent_url)
|
|
|
|
|
|
|
|
return if parent_status.nil?
|
|
|
|
|
|
|
|
child_status.thread = parent_status
|
|
|
|
child_status.save!
|
|
|
|
end
|
|
|
|
end
|