invalid_gpg_signature_update_worker.rb 268 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 # frozen_string_literal: true class InvalidGpgSignatureUpdateWorker include ApplicationWorker def perform(gpg_key_id) gpg_key = GpgKey.find_by(id: gpg_key_id) return unless gpg_key Gitlab::Gpg::InvalidGpgSignatureUpdater.new(gpg_key).run end end