197a3d0533
As we have a central domain for auto merge process today, we should use a single worker for any auto merge process.
12 lines
201 B
Ruby
12 lines
201 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineSuccessWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_processing
|
|
|
|
def perform(pipeline_id)
|
|
# no-op
|
|
end
|
|
end
|