summaryrefslogtreecommitdiff
path: root/app/workers/git_garbage_collect_worker.rb
blob: a2aab23db7b3afcb6a13e002d9dfd0510d982deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

# According to our docs, we can only remove workers on major releases
# https://docs.gitlab.com/ee/development/sidekiq_style_guide.html#removing-workers.
#
# We need to still maintain this until 14.0 but with the current functionality.
#
# In https://gitlab.com/gitlab-org/gitlab/-/issues/299290 we track that removal.
class GitGarbageCollectWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  sidekiq_options retry: false
  feature_category :gitaly
  loggable_arguments 1, 2, 3

  def perform(project_id, task = :gc, lease_key = nil, lease_uuid = nil)
    ::Projects::GitGarbageCollectWorker.new.perform(project_id, task, lease_key, lease_uuid)
  end
end