blob: 6f3615d249cd8bb5d615ada8e06ba85224659658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# frozen_string_literal: true
class ClusterProvisionWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include ClusterQueue
idempotent!
def perform(_); end
end
|