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
|
|
|
|
|
2017-04-03 15:53:20 -07:00
|
|
|
sidekiq_options queue: 'pull', retry: false
|
2017-01-04 18:28:21 -08:00
|
|
|
|
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
|