summaryrefslogtreecommitdiff
path: root/app/workers/self_monitoring_project_create_worker.rb
blob: 9dc3bb855fb150f372a59ddcf89b00059884942d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class SelfMonitoringProjectCreateWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  sidekiq_options retry: 3
  include ExclusiveLeaseGuard
  include SelfMonitoringProjectWorker

  def perform
    try_obtain_lease do
      Gitlab::DatabaseImporters::SelfMonitoring::Project::CreateService.new.execute
    end
  end
end