Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fetch_google_ip_list_worker.rb « google_cloud « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b14b4e735dc3eefed189ba66ebae3dfb8977db41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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