Also: - Fix locks not being removed when jobs go to the dead job queue - Add UI for managing locks to the Sidekiq dashboard - Remove unused Sidekiq workers Fix #13349
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class ResolveAccountWorker
 | 
						|
  include Sidekiq::Worker
 | 
						|
 | 
						|
  sidekiq_options queue: 'pull', lock: :until_executed
 | 
						|
 | 
						|
  def perform(uri)
 | 
						|
    ResolveAccountService.new.call(uri)
 | 
						|
  end
 | 
						|
end
 |