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

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

class PartitionCreationWorker
  include ApplicationWorker

  sidekiq_options retry: 3
  include CronjobQueue # rubocop:disable Scalability/CronWorkerContext

  feature_category :database
  idempotent!

  def perform
    # This worker has been removed in favor of Database::PartitionManagementWorker
    Database::PartitionManagementWorker.new.perform
  end
end