debian-mirror-gitlab/app/workers/propagate_integration_inherit_descendant_worker.rb

24 lines
638 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
class PropagateIntegrationInheritDescendantWorker
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2021-01-29 00:20:46 +05:30
feature_category :integrations
2021-10-27 15:23:28 +05:30
urgency :low
2021-01-29 00:20:46 +05:30
idempotent!
# rubocop: disable CodeReuse/ActiveRecord
def perform(integration_id, min_id, max_id)
2021-06-08 01:23:25 +05:30
integration = Integration.find_by_id(integration_id)
2021-01-29 00:20:46 +05:30
return unless integration
2021-06-08 01:23:25 +05:30
batch = Integration.inherited_descendants_from_self_or_ancestors_from(integration).where(id: min_id..max_id)
2021-01-29 00:20:46 +05:30
BulkUpdateIntegrationService.new(integration, batch).execute
end
# rubocop: enable CodeReuse/ActiveRecord
end