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

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

class X509CertificateRevokeWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3

  feature_category :source_code_management

  idempotent!

  def perform(certificate_id)
    return unless certificate_id

    X509Certificate.find_by_id(certificate_id).try do |certificate|
      X509CertificateRevokeService.new.execute(certificate)
    end
  end
end