gitlab-org--gitlab-foss/app/workers/expire_build_artifacts_work...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
568 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ExpireBuildArtifactsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
include CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
2016-05-18 20:21:51 +00:00
feature_category :build_artifacts
2016-05-18 20:21:51 +00:00
def perform
artifacts_count = Ci::JobArtifacts::DestroyAllExpiredService.new.execute
log_extra_metadata_on_done(:destroyed_job_artifacts_count, artifacts_count)
end
2016-05-18 20:21:51 +00:00
end