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

project_export_options.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9318c1ba43c0c6c105c7b5eadc1ed269da94a71 (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
# frozen_string_literal: true

module ProjectExportOptions
  extend ActiveSupport::Concern

  EXPORT_RETRY_COUNT = 3

  included do
    sidekiq_options retry: EXPORT_RETRY_COUNT, status_expiration: StuckExportJobsWorker::EXPORT_JOBS_EXPIRATION

    # We mark the project export as failed once we have exhausted all retries
    sidekiq_retries_exhausted do |job|
      project = Project.find(job['args'][1])
      # rubocop: disable CodeReuse/ActiveRecord
      job = project.export_jobs.find_by(jid: job["jid"])
      # rubocop: enable CodeReuse/ActiveRecord

      if job&.fail_op
        Sidekiq.logger.info "Job #{job['jid']} for project #{project.id} has been set to failed state"
      else
        Sidekiq.logger.error "Failed to set Job #{job['jid']} for project #{project.id} to failed state"
      end
    end
  end
end