debian-mirror-gitlab/app/workers/propagate_integration_worker.rb
2021-10-27 15:23:28 +05:30

18 lines
357 B
Ruby

# frozen_string_literal: true
class PropagateIntegrationWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
feature_category :integrations
loggable_arguments 1
urgency :low
idempotent!
def perform(integration_id)
Admin::PropagateIntegrationService.propagate(Integration.find(integration_id))
end
end