2016-12-12 20:12:19 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ThreadResolveWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-01-05 02:28:21 +00:00
|
|
|
sidekiq_options retry: false
|
|
|
|
|
2016-12-12 20:12:19 +00: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
|