mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 06:26:21 +00:00
f722bd2387
must be added to the Sidekiq invokation in your systemd file The pull queue will handle link crawling, thread resolving, and OStatus processing. Such tasks are more likely to hang for a longer time (due to network requests) so it is more sensible to not make the "in-house" tasks wait for them.
18 lines
451 B
Ruby
18 lines
451 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AfterRemoteFollowWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull', retry: 5
|
|
|
|
def perform(follow_id)
|
|
follow = Follow.find(follow_id)
|
|
updated_account = FetchRemoteAccountService.new.call(follow.target_account.remote_url)
|
|
|
|
return if updated_account.nil? || !updated_account.locked?
|
|
|
|
follow.destroy
|
|
FollowService.new.call(follow.account, updated_account.acct)
|
|
end
|
|
end
|