Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_export_project_cleanup_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72e3a9ae734686fe50e65a541b66d9a2bc7dfecb (plain)
1
2
3
4
5
6
7
8
9
class ImportExportProjectCleanupWorker
  include Sidekiq::Worker

  sidekiq_options queue: :default

  def perform
    ImportExportCleanUpService.new.execute
  end
end