This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-12 12:12:19 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ThreadResolveWorker
|
|
|
|
include Sidekiq::Worker
|
2019-02-28 06:22:21 -08:00
|
|
|
include ExponentialBackoff
|
2016-12-12 12:12:19 -08:00
|
|
|
|
2017-11-11 07:49:04 -08:00
|
|
|
sidekiq_options queue: 'pull', retry: 3
|
|
|
|
|
2016-12-12 12:12:19 -08: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
|