mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
class PipelineUpdateWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
enqueue_in group: :processing
|
|
|
|
def perform(pipeline_id)
|
|
Ci::Pipeline.find_by(id: pipeline_id)
|
|
.try(:update_status)
|
|
end
|
|
end
|