2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
class ClusterProvisionWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
data_consistency :always
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
sidekiq_options retry: 3
|
2018-03-17 18:26:18 +05:30
|
|
|
include ClusterQueue
|
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
idempotent!
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2023-03-17 16:20:25 +05:30
|
|
|
def perform(_); end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|