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

relation_export_worker.rb « import_export « projects « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13ca33c4457834c619e4acd473b85b89dad8dadf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Projects
  module ImportExport
    class RelationExportWorker
      include ApplicationWorker
      include ExceptionBacktrace

      idempotent!
      data_consistency :always
      deduplicate :until_executed
      feature_category :importers
      sidekiq_options status_expiration: StuckExportJobsWorker::EXPORT_JOBS_EXPIRATION
      urgency :low
      worker_resource_boundary :memory

      def perform(project_relation_export_id)
        relation_export = Projects::ImportExport::RelationExport.find(project_relation_export_id)

        if relation_export.queued?
          Projects::ImportExport::RelationExportService.new(relation_export, jid).execute
        end
      end
    end
  end
end