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

notify_git_push_worker.rb « agents « clusters « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db1de0b3518f4b5e28469b6ac55d57c919e31a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Clusters
  module Agents
    class NotifyGitPushWorker
      include ApplicationWorker
      include ClusterAgentQueue

      deduplicate :until_executed, including_scheduled: true
      idempotent!

      urgency :low
      data_consistency :delayed

      def perform(project_id)
        return unless project = ::Project.find_by_id(project_id)

        Gitlab::Kas::Client.new.send_git_push_event(project: project)
      end
    end
  end
end