2017-01-24 05:29:34 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnmergeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-04 07:53:20 +09:00
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
2017-01-24 05:29:34 +09:00
|
|
|
def perform(from_account_id, into_account_id)
|
2023-07-10 10:06:09 +09:00
|
|
|
ApplicationRecord.connected_to(role: :primary) do
|
|
|
|
@from_account = Account.find(from_account_id)
|
|
|
|
@into_account = Account.find(into_account_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
ApplicationRecord.connected_to(role: :read, prevent_writes: true) do
|
|
|
|
FeedManager.instance.unmerge_from_home(@from_account, @into_account)
|
|
|
|
end
|
2020-09-08 10:41:16 +09:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2017-01-24 05:29:34 +09:00
|
|
|
end
|
|
|
|
end
|