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

sync_dashboards_worker.rb « dashboard « metrics « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 668542e51a5ca17540a65ce527af8a6e5c1c40bc (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 Metrics
  module Dashboard
    class SyncDashboardsWorker
      include ApplicationWorker

      data_consistency :always

      sidekiq_options retry: 3

      feature_category :metrics

      idempotent!

      def perform(project_id); end
    end
  end
end