gitlab-org--gitlab-foss/app/workers/import_export_project_clean...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
453 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ImportExportProjectCleanupWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
include CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
2016-06-14 20:11:21 +00:00
feature_category :importers
2016-06-14 20:11:21 +00:00
def perform
ImportExportCleanUpService.new.execute
2016-06-14 20:11:21 +00:00
end
end