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

class WaitForClusterCreationWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3
  include ClusterQueue

  idempotent!

  def perform(_); end
end