2018-12-13 14:26:56 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
# Deprecated: https://gitlab.com/gitlab-org/gitlab/-/issues/214585
|
2020-02-19 13:09:10 -05:00
|
|
|
class ProjectDailyStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
|
2018-12-13 14:26:56 -05:00
|
|
|
include ApplicationWorker
|
|
|
|
|
2021-07-21 08:09:35 -04:00
|
|
|
data_consistency :always
|
|
|
|
|
2021-04-30 14:10:09 -04:00
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :source_code_management
|
|
|
|
|
2018-12-13 14:26:56 -05:00
|
|
|
def perform(project_id)
|
|
|
|
project = Project.find_by_id(project_id)
|
|
|
|
|
|
|
|
return unless project&.repository&.exists?
|
|
|
|
|
|
|
|
Projects::FetchStatisticsIncrementService.new(project).execute
|
|
|
|
end
|
|
|
|
end
|