2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-06 08:52:00 -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
|
2017-08-21 07:05:01 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-10-03 10:30:11 -04:00
|
|
|
def perform(pipeline_id)
|
2016-10-04 10:34:22 -04:00
|
|
|
Ci::Pipeline.find_by(id: pipeline_id)
|
|
|
|
.try(:update_status)
|
2016-10-03 10:30:11 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-10-03 10:30:11 -04:00
|
|
|
end
|