2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
# Deprecated: https://gitlab.com/gitlab-org/gitlab/-/issues/214585
|
2020-04-08 14:13:33 +05:30
|
|
|
class ProjectDailyStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
|
2019-07-07 11:18:12 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
data_consistency :always
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
sidekiq_options retry: 3
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :source_code_management
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def perform(project_id)
|
|
|
|
project = Project.find_by_id(project_id)
|
|
|
|
|
|
|
|
return unless project&.repository&.exists?
|
|
|
|
|
|
|
|
Projects::FetchStatisticsIncrementService.new(project).execute
|
|
|
|
end
|
|
|
|
end
|