13 lines
276 B
Ruby
13 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineSuccessWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_processing
|
|
latency_sensitive_worker!
|
|
|
|
def perform(pipeline_id)
|
|
# no-op
|
|
end
|
|
end
|