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.
2017-09-02 16:11:23 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-22 05:25:09 -08:00
|
|
|
class ResolveAccountWorker
|
2017-09-02 16:11:23 -07:00
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2020-03-31 12:59:03 -07:00
|
|
|
sidekiq_options queue: 'pull', lock: :until_executed
|
2017-09-02 16:11:23 -07:00
|
|
|
|
|
|
|
def perform(uri)
|
2018-01-22 05:25:09 -08:00
|
|
|
ResolveAccountService.new.call(uri)
|
2017-09-02 16:11:23 -07:00
|
|
|
end
|
|
|
|
end
|