Class: Ci::CreateCrossProjectPipelineWorker
- Inherits:
-
Object
- Object
- Ci::CreateCrossProjectPipelineWorker
- Includes:
- ApplicationWorker, PipelineQueue
- Defined in:
- app/workers/ci/create_cross_project_pipeline_worker.rb
Overview
rubocop:disable Scalability/IdempotentWorker
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY
Constants included from WorkerAttributes
WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(bridge_id) ⇒ Object
10 11 12 13 14 15 16 |
# File 'app/workers/ci/create_cross_project_pipeline_worker.rb', line 10 def perform(bridge_id) ::Ci::Bridge.find_by_id(bridge_id).try do |bridge| ::Ci::CreateDownstreamPipelineService .new(bridge.project, bridge.user) .execute(bridge) end end |