debian-mirror-gitlab/app/workers/pipeline_update_worker.rb
2020-08-09 17:44:08 +05:30

16 lines
282 B
Ruby

# frozen_string_literal: true
class PipelineUpdateWorker
include ApplicationWorker
include PipelineQueue
queue_namespace :pipeline_processing
urgency :high
idempotent!
def perform(pipeline_id)
Ci::Pipeline.find_by_id(pipeline_id)&.update_legacy_status
end
end