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

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

module WebHooks
  class LogDestroyService
    BATCH_SIZE = 1000

    def initialize(web_hook_id)
      @web_hook_id = web_hook_id
    end

    def execute
      next while WebHookLog.delete_batch_for(@web_hook_id, batch_size: BATCH_SIZE)

      ServiceResponse.success
    rescue StandardError => ex
      ServiceResponse.error(message: ex.message)
    end
  end
end