2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
class PipelineNotificationWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2017-08-17 22:00:37 +05:30
|
|
|
include PipelineQueue
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
latency_sensitive_worker!
|
|
|
|
worker_resource_boundary :cpu
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-08-17 22:00:37 +05:30
|
|
|
def perform(pipeline_id, recipients = nil)
|
|
|
|
pipeline = Ci::Pipeline.find_by(id: pipeline_id)
|
|
|
|
|
|
|
|
return unless pipeline
|
|
|
|
|
|
|
|
NotificationService.new.pipeline_finished(pipeline, recipients)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|