2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-12 07:44:33 -04:00
|
|
|
class PipelineHooksWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include PipelineQueue
|
2016-10-12 07:44:33 -04:00
|
|
|
|
2017-11-28 11:16:50 -05:00
|
|
|
queue_namespace :pipeline_hooks
|
2017-08-21 08:02:20 -04:00
|
|
|
|
2016-10-12 07:44:33 -04:00
|
|
|
def perform(pipeline_id)
|
|
|
|
Ci::Pipeline.find_by(id: pipeline_id)
|
|
|
|
.try(:execute_hooks)
|
|
|
|
end
|
|
|
|
end
|