debian-mirror-gitlab/app/workers/pipeline_success_worker.rb

14 lines
264 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class PipelineSuccessWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2016-11-03 12:29:30 +05:30
include PipelineQueue
2018-03-17 18:26:18 +05:30
queue_namespace :pipeline_processing
2020-04-08 14:13:33 +05:30
urgency :high
2018-03-17 18:26:18 +05:30
2016-11-03 12:29:30 +05:30
def perform(pipeline_id)
2019-09-04 21:01:54 +05:30
# no-op
2016-11-03 12:29:30 +05:30
end
end