2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
class PipelineSuccessWorker
|
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
|
|
|
|
|
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
|