debian-mirror-gitlab/app/workers/environments/canary_ingress/update_worker.rb
2021-02-22 17:27:13 +05:30

22 lines
580 B
Ruby

# frozen_string_literal: true
module Environments
module CanaryIngress
class UpdateWorker
include ApplicationWorker
sidekiq_options retry: false
idempotent!
worker_has_external_dependencies!
feature_category :continuous_delivery
def perform(environment_id, params)
Environment.find_by_id(environment_id).try do |environment|
Environments::CanaryIngress::UpdateService
.new(environment.project, nil, params.with_indifferent_access)
.execute(environment)
end
end
end
end
end