gitlab-org--gitlab-foss/app/workers/projects/schedule_refresh_build_arti...

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

19 lines
409 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Projects
class ScheduleRefreshBuildArtifactsSizeStatisticsWorker
include ApplicationWorker
include CronjobQueue # rubocop:disable Scalability/CronWorkerContext
data_consistency :always
feature_category :build_artifacts
idempotent!
def perform
Projects::RefreshBuildArtifactsSizeStatisticsWorker.perform_with_capacity
end
end
end