gitlab-org--gitlab-foss/app/workers/google_cloud/fetch_google_ip_list_worker.rb

18 lines
338 B
Ruby

# frozen_string_literal: true
module GoogleCloud
class FetchGoogleIpListWorker
include ApplicationWorker
data_consistency :delayed
feature_category :build_artifacts
urgency :low
deduplicate :until_executing
idempotent!
def perform
GoogleCloud::FetchGoogleIpListService.new.execute
end
end
end