Class: Ci::PipelineSuccessUnlockArtifactsWorker
- Inherits:
-
Object
- Object
- Ci::PipelineSuccessUnlockArtifactsWorker
- Includes:
- ApplicationWorker, PipelineBackgroundQueue
- Defined in:
- app/workers/ci/pipeline_success_unlock_artifacts_worker.rb
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(pipeline_id) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'app/workers/ci/pipeline_success_unlock_artifacts_worker.rb', line 10 def perform(pipeline_id) ::Ci::Pipeline.find_by_id(pipeline_id).try do |pipeline| break unless pipeline.has_archive_artifacts? ::Ci::UnlockArtifactsService .new(pipeline.project, pipeline.user) .execute(pipeline.ci_ref, pipeline) end end |