debian-mirror-gitlab/app/workers/build_hooks_worker.rb
2021-06-08 01:23:25 +05:30

32 lines
820 B
Ruby

# frozen_string_literal: true
class BuildHooksWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
sidekiq_options retry: 3
include PipelineQueue
queue_namespace :pipeline_hooks
feature_category :continuous_integration
urgency :high
data_consistency :delayed, feature_flag: :load_balancing_for_build_hooks_worker
DATA_CONSISTENCY_DELAY = 3
def self.perform_async(*args)
if Feature.enabled?(:delayed_perform_for_build_hooks_worker, default_enabled: :yaml)
perform_in(DATA_CONSISTENCY_DELAY.seconds, *args)
else
super
end
end
# rubocop: disable CodeReuse/ActiveRecord
def perform(build_id)
Ci::Build.includes({ runner: :tags })
.find_by(id: build_id)
.try(:execute_hooks)
end
# rubocop: enable CodeReuse/ActiveRecord
end