2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-08-13 11:10:03 -04:00
|
|
|
# This worker is deprecated and will be removed in 14.0
|
|
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/232806
|
2020-07-06 05:09:20 -04:00
|
|
|
class PipelineUpdateWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include PipelineQueue
|
2016-10-03 10:30:11 -04:00
|
|
|
|
2017-11-28 11:16:50 -05:00
|
|
|
queue_namespace :pipeline_processing
|
2020-03-02 13:07:42 -05:00
|
|
|
urgency :high
|
2017-08-21 07:05:01 -04:00
|
|
|
|
2020-07-06 05:09:20 -04:00
|
|
|
idempotent!
|
|
|
|
|
2020-08-13 11:10:03 -04:00
|
|
|
def perform(_pipeline_id)
|
|
|
|
# no-op
|
2016-10-03 10:30:11 -04:00
|
|
|
end
|
|
|
|
end
|