* No need to re-require sidekiq plugins, they are required via Gemfile * Add derailed_benchmarks tool, no need to require TTY gems in Gemfile * Replace ruby-oembed with FetchOEmbedService Reduce startup by 45382 allocated objects * Remove preloaded JSON-LD in favour of caching HTTP responses Reduce boot RAM by about 6 MiB * Fix tests * Fix test suite by stubbing out JSON-LD contexts
		
			
				
	
	
		
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Scheduler::UserCleanupScheduler
 | 
						|
  include Sidekiq::Worker
 | 
						|
 | 
						|
  def perform
 | 
						|
    User.where('confirmed_at is NULL AND confirmation_sent_at <= ?', 2.days.ago).find_in_batches do |batch|
 | 
						|
      Account.where(id: batch.map(&:account_id)).delete_all
 | 
						|
      User.where(id: batch.map(&:id)).delete_all
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |