15 lines
339 B
Ruby
15 lines
339 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SystemHookPushWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
|
|
data_consistency :always
|
|
|
|
sidekiq_options retry: 3
|
|
|
|
feature_category :source_code_management
|
|
|
|
def perform(push_data, hook_id)
|
|
SystemHooksService.new.execute_hooks(push_data, hook_id)
|
|
end
|
|
end
|