Class: ExpireBuildInstanceArtifactsWorker
- Inherits:
-
Object
- Object
- ExpireBuildInstanceArtifactsWorker
- Includes:
- ApplicationWorker
- Defined in:
- app/workers/expire_build_instance_artifacts_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
-
#perform(build_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord.
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(build_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord
9 10 11 12 13 14 15 16 17 18 19 |
# File 'app/workers/expire_build_instance_artifacts_worker.rb', line 9 def perform(build_id) build = Ci::Build .with_expired_artifacts .reorder(nil) .find_by(id: build_id) return unless build&.project && !build.project.pending_delete Gitlab::AppLogger.info("Removing artifacts for build #{build.id}...") build.erase_erasable_artifacts! end |