gitlab-org--gitlab-foss/app/workers/stage_update_worker.rb

20 lines
326 B
Ruby

# frozen_string_literal: true
class StageUpdateWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include PipelineQueue
queue_namespace :pipeline_processing
urgency :high
idempotent!
def perform(stage_id)
Ci::Stage.find_by_id(stage_id)&.update_legacy_status
end
end