Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_statistics_worker.rb « users « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb1b192577fb0057cbf8dd61b9934fd1f8e23f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Users
  class CreateStatisticsWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker
    # rubocop:disable Scalability/CronWorkerContext
    # This worker does not perform work scoped to a context
    include CronjobQueue
    # rubocop:enable Scalability/CronWorkerContext

    feature_category :users

    def perform
      UsersStatistics.create_current_stats!
    rescue ActiveRecord::RecordInvalid => exception
      Gitlab::ErrorTracking.track_exception(exception)
    end
  end
end